-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (19 loc) · 884 Bytes
/
Copy path.env.example
File metadata and controls
23 lines (19 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ===========================================
# AuditFlow Environment Configuration
# ===========================================
# Copy this file to .env and fill in the values
# Database Configuration (Neon PostgreSQL)
# Get your connection string from: https://neon.tech
DATABASE_URL=postgresql://user:password@host.neon.tech/auditflow?sslmode=require
# LLM Configuration - Google AI Studio (Gemini)
# Get your API key from: https://aistudio.google.com
GOOGLE_API_KEY=your-google-api-key-here
LLM_MODEL=gemini-2.0-flash
# Service URLs (Railway provides these automatically)
# Update these after deploying to Railway
ROUTER_SERVICE_URL=https://router-production.up.railway.app
RAG_SERVICE_URL=https://rag-production.up.railway.app
AGENT_SERVICE_URL=https://agent-production.up.railway.app
REPORTER_SERVICE_URL=https://reporter-production.up.railway.app
# Logging
LOG_LEVEL=INFO