Add sections to .env.example
This commit is contained in:
parent
867cf866f8
commit
dbd2aa8476
|
@ -1,13 +1,15 @@
|
||||||
|
# Django secrets
|
||||||
SECRET_KEY=super-insecure-django-key
|
SECRET_KEY=super-insecure-django-key
|
||||||
DEBUG=True
|
DEBUG=True
|
||||||
ALLOWED_HOSTS=*
|
ALLOWED_HOSTS=*
|
||||||
ENV_NAME=DEV
|
ENV_NAME=DEV
|
||||||
|
|
||||||
|
# Datbase secrets
|
||||||
DB_HOST=localhost
|
DB_HOST=localhost
|
||||||
DB_PORT=5432
|
DB_PORT=5432
|
||||||
DB_NAME=example_db
|
DB_NAME=example_db
|
||||||
DB_USERNAME=postgres
|
DB_USERNAME=postgres
|
||||||
DB_PASSWORD=12345678
|
DB_PASSWORD=12345678
|
||||||
|
|
||||||
# Super user
|
# Super user information
|
||||||
SUPERUSER_EMAIL=superuser@example.com
|
SUPERUSER_EMAIL=superuser@example.com
|
||||||
|
|
Loading…
Reference in New Issue