16 lines
269 B
Plaintext
16 lines
269 B
Plaintext
# Django secrets
|
|
SECRET_KEY=super-insecure-django-key
|
|
DEBUG=True
|
|
ALLOWED_HOSTS=*
|
|
ENV_NAME=DEV
|
|
|
|
# Datbase secrets
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=example_db
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=12345678
|
|
|
|
# Super user information
|
|
SUPERUSER_EMAIL=superuser@example.com
|