-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 750 Bytes
/
Copy path.env.example
File metadata and controls
31 lines (24 loc) · 750 Bytes
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
SECRET_KEY=django-insecure-change-me-in-production
DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1,api
# Public HTTPS origins, needed for admin login once DEBUG=False behind the proxy
CSRF_TRUSTED_ORIGINS=
BEHIND_TLS_PROXY=False
POSTGRES_DB=coverletter_db
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_HOST=db
POSTGRES_PORT=5432
REDIS_URL=redis://redis:6379/0
CORS_ALLOWED_ORIGINS=http://localhost:3007
GEMINI_API_KEY=
GEMINI_MODEL=gemini-2.5-flash
GEMINI_TIMEOUT_SECONDS=60
MEDIA_ROOT=/app/media
JOB_RETENTION_HOURS=24
MAX_RESUME_SIZE_MB=5
JOB_CREATE_RATE=10/hour
# Leave the password blank to skip superuser creation entirely
DJANGO_SUPERUSER_USERNAME=admin
DJANGO_SUPERUSER_EMAIL=admin@example.com
DJANGO_SUPERUSER_PASSWORD=admin