19 lines
491 B
Bash
19 lines
491 B
Bash
# Django
|
|
DEBUG=1
|
|
SECRET_KEY=w(s0&(_eb058wvmg@44_repv8)r9@5p8fx*g_@c)1dm&d*ew^u
|
|
DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
|
|
|
|
# External DB (you mentioned production uses an external DB)
|
|
DATABASE_HOST=db-postgresql-lon1-05515-jan-22-backup-do-user-8165014-0.c.db.ondigitalocean.com
|
|
DATABASE_PORT=25060
|
|
DATABASE_NAME=testing
|
|
DATABASE_USER=testing
|
|
DATABASE_PASSWORD=AVNS_ykXO4RxAq0zeJTI-1Nl
|
|
|
|
# Redis
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# Gunicorn tuning
|
|
GUNICORN_WORKERS=3
|
|
GUNICORN_LOGLEVEL=info
|