-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (34 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
37 lines (34 loc) · 1.11 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
ENVIRONMENT=development
APP_NAME=DocIQ
API_V1_PREFIX=/api/v1
BACKEND_CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
SECRET_KEY=change-me
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=15
REFRESH_TOKEN_EXPIRE_DAYS=7
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5433/dociq
SYNC_DATABASE_URL=postgresql+psycopg://postgres:postgres@localhost:5433/dociq
REDIS_URL=redis://localhost:6379/0
QDRANT_URL=http://localhost:6333
S3_ENDPOINT_URL=http://localhost:9000
S3_ACCESS_KEY=minioadmin
S3_SECRET_KEY=minioadmin
S3_BUCKET=dociq
S3_REGION=us-east-1
S3_USE_SSL=false
# LLM — Primary: free models via OpenRouter (no key needed for free tier)
FREE_LLM_BASE_URL=https://openrouter.ai/api/v1
FREE_LLM_MODEL=google/gemma-3-27b-it:free
# LLM — Fallback: Gemini API (set your key here)
GEMINI_API_KEY=change-me
GEMINI_MODEL=gemini-2.0-flash
GEMINI_EMBEDDING_MODEL=models/text-embedding-004
SELF_HOSTED_LLM=false
DEFAULT_PAGE_SIZE=20
MAX_PAGE_SIZE=100
MAX_UPLOAD_SIZE_MB=50
RATE_LIMIT_PER_MINUTE=120
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
SENTRY_DSN=
PROMETHEUS_ENABLED=true
FLOWER_BASIC_AUTH=admin:admin