2023-11-25 17:41:34 +00:00
|
|
|
# Django secrets
|
2022-08-09 05:13:35 +01:00
|
|
|
SECRET_KEY=super-insecure-django-key
|
2022-01-25 03:15:53 +00:00
|
|
|
DEBUG=True
|
|
|
|
ALLOWED_HOSTS=*
|
|
|
|
ENV_NAME=DEV
|
|
|
|
|
2023-11-25 17:41:34 +00:00
|
|
|
# Datbase secrets
|
2022-01-25 03:15:53 +00:00
|
|
|
DB_HOST=localhost
|
|
|
|
DB_PORT=5432
|
|
|
|
DB_NAME=example_db
|
|
|
|
DB_USERNAME=postgres
|
|
|
|
DB_PASSWORD=12345678
|
|
|
|
|
2023-11-25 17:41:34 +00:00
|
|
|
# Super user information
|
2022-01-25 03:15:53 +00:00
|
|
|
SUPERUSER_EMAIL=superuser@example.com
|