django-project-structure/.env.example

16 lines
269 B
Plaintext
Raw Permalink Normal View History

2023-11-25 17:41:34 +00:00
# Django secrets
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