-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (19 loc) · 970 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (19 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copy to .env before `docker compose up` or local runs.
# Compose-only secrets (NOT read by Analyzer Settings — no ANALYZER_ prefix):
POSTGRES_PASSWORD=changeme
REDIS_PASSWORD=changeme
# Analyzer Settings (prefix ANALYZER_). See README Configuration.
#
# Docker Compose REQUIRES a non-empty ANALYZER_API_KEY (${VAR:?} fails on empty).
# Local open API without a key: set ANALYZER_DEBUG=true and omit compose, or run
# uvicorn with ANALYZER_DEBUG=true and ANALYZER_API_KEY unset in the shell.
ANALYZER_DEBUG=false
ANALYZER_API_KEY=change-me-before-compose-up
# Optional overrides (defaults shown in README):
# ANALYZER_DATABASE_URL=postgresql://analyzer:analyzer@localhost:5432/analyzer
# ANALYZER_REDIS_URL=redis://localhost:6379/0
# ANALYZER_CELERY_BROKER_URL=redis://localhost:6379/1
# ANALYZER_CELERY_RESULT_BACKEND=redis://localhost:6379/2
# ANALYZER_CORS_ORIGINS=["http://localhost:5173"]
# ANALYZER_TRUST_X_FORWARDED_FOR=false
# ANALYZER_PARALLEL_RULES=false