Added env template to copy over
This commit is contained in:
parent
f5b0105d32
commit
b089198b8c
1 changed files with 28 additions and 0 deletions
28
.env.template
Normal file
28
.env.template
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Django .env template file
|
||||
|
||||
# Directories
|
||||
DJANGO_FRONT_DIR=front
|
||||
DJANGO_MODEL_DIR=model
|
||||
|
||||
# Django core
|
||||
DJANGO_SECRET_KEY=change-me-secure-key
|
||||
DJANGO_DEBUG=False
|
||||
DJANGO_DOMAIN_NAME=localhost
|
||||
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1
|
||||
|
||||
# Celery
|
||||
DJANGO_CELERY_BROKER_URL=redis://localhost:6379/0
|
||||
|
||||
# Static & Media paths
|
||||
DJANGO_STATIC_URL=/static/
|
||||
DJANGO_MEDIA_URL=/media/
|
||||
DJANGO_STATIC_ROOT=static
|
||||
DJANGO_MEDIA_ROOT=media
|
||||
|
||||
# Database
|
||||
DJANGO_DB_ENGINE=django.db.backends.sqlite3
|
||||
DJANGO_POSTGRES_DB=postgres_db_name
|
||||
DJANGO_POSTGRES_USER=postgres_user
|
||||
DJANGO_POSTGRES_PASSWORD=postgres_password
|
||||
DJANGO_POSTGRES_HOST=localhost
|
||||
DJANGO_POSTGRES_PORT=5432
|
||||
Loading…
Reference in a new issue