-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
50 lines (41 loc) · 1.4 KB
/
Copy pathexample.env
File metadata and controls
50 lines (41 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Docker environment variables
# Copy this file to .env and update with your values
# --- AI Service ---
OPENROUTER_API_KEY=
GROQ_API_KEY=
GROQ_MODEL=llama-3.3-70b-versatile
HF_TOKEN=
HF_HUB_OFFLINE=1
# --- Vector Database (Qdrant) ---
QDRANT_URL=http://vector_db:6333
QDRANT_API_KEY=
# Shared key between the web backend and the AI service.
# Generate one: openssl rand -hex 32
# Leave empty only for local development (endpoints are then unauthenticated).
AI_SERVICE_KEY=
# --- PostgreSQL ---
POSTGRES_USER=postgres
POSTGRES_PASSWORD=
POSTGRES_DB=app_db
POSTGRES_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@application_db:5432/${POSTGRES_DB}
# --- WorkOS AuthKit ---
# Get these from the WorkOS Dashboard: https://dashboard.workos.com
WORKOS_CLIENT_ID="client_..."
WORKOS_API_KEY="sk_test_..."
WORKOS_REDIRECT_URI="http://localhost:5001/api/auth/callback"
# Generate a secure 32+ character password: openssl rand -base64 24
WORKOS_COOKIE_PASSWORD="your-secure-cookie-password-here"
# Optional WorkOS Configuration
# WORKOS_COOKIE_MAX_AGE=34560000
# WORKOS_COOKIE_NAME=wos-session
# WORKOS_COOKIE_DOMAIN=
# WORKOS_COOKIE_SAMESITE=lax
# --- Frontend ---
AI_SERVICE_URL=http://localhost:5000
NODE_ENV=development
# --- API Settings ---
CORS_ORIGINS=http://localhost:3000,http://localhost:3001,http://127.0.0.1:3000
MAX_UPLOAD_SIZE_MB=50
LOG_LEVEL=INFO
# --- Internal (usually no need to change) ---
PYTHONPATH=/app/src