2026-02-13 15:27:59 -05:00
|
|
|
DJANGO_DEBUG_FALSE=1
|
|
|
|
|
DJANGO_SECRET_KEY={{ secret_key.content | b64decode }}
|
|
|
|
|
DJANGO_ALLOWED_HOST={{ django_allowed_host }}
|
2026-02-22 20:42:33 -05:00
|
|
|
DJANGO_SUPERUSER_EMAIL={{ django_superuser_email }}
|
|
|
|
|
DJANGO_SUPERUSER_PASSWORD={{ django_superuser_password }}
|
2026-02-18 21:12:01 -05:00
|
|
|
DATABASE_URL=postgresql://gamearray:{{ postgres_password }}@gamearray_postgres/gamearray
|
|
|
|
|
MAILGUN_API_KEY={{ mailgun_api_key }}
|
2026-03-09 01:07:16 -04:00
|
|
|
STRIPE_PUBLISHABLE_KEY={{ stripe_publishable_key }}
|
|
|
|
|
STRIPE_SECRET_KEY={{ stripe_secret_key }}
|
2026-02-21 21:35:15 -05:00
|
|
|
CELERY_BROKER_URL=redis://gamearray_redis:6379/0
|
2026-02-21 23:13:23 -05:00
|
|
|
REDIS_URL=redis://gamearray_redis:6379/1
|
2026-04-16 11:22:52 -04:00
|
|
|
PYSWISS_URL=https://charts.earthmanrpg.me
|
2026-05-27 14:16:33 -04:00
|
|
|
# coturn / WebRTC voice — only COTURN_SHARED_SECRET is sensitive (it signs the
|
|
|
|
|
# TURN HMAC creds + must equal the coturn droplet's static-auth-secret). Host +
|
|
|
|
|
# realm are public. coturn_secret comes from the vault (share it across the app
|
|
|
|
|
# + coturn host groups, e.g. group_vars/all/vault.yaml, so both plays match).
|
|
|
|
|
COTURN_SHARED_SECRET={{ coturn_secret }}
|
|
|
|
|
COTURN_TURN_HOST=turn.earthmanrpg.me
|
|
|
|
|
COTURN_REALM=earthmanrpg.me
|
2026-02-21 23:13:23 -05:00
|
|
|
|