-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.prod
More file actions
20 lines (19 loc) · 703 Bytes
/
Copy path.env.prod
File metadata and controls
20 lines (19 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# NOTE: on some cases will be better store this file on a most private storage than version control.
DEBUG=0
SECRET_KEY=change_me
DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
DJANGO_CACHE_BACKEND=django.core.cache.backends.redis.RedisCache
DJANGO_CACHE_LOCATION=redis://127.0.0.1:6379
DJANGO_SUPERUSER_USERNAME=superuser
DJANGO_SUPERUSER_EMAIL='superuser@movielisting.com'
DJANGO_SUPERUSER_PASSWORD=password
SQL_ENGINE=django.db.backends.postgresql
SQL_DATABASE=fancy_web_scrapping_prod
SQL_USER=fancy_web_scrapping
SQL_PASSWORD=fancy_web_scrapping
SQL_HOST=db
SQL_PORT=5432
DATABASE=postgres
CELERY_TIMEZONE="UTC"
CELERY_BROKER_URL="redis://redis:6379/0"
CELERY_RESULT_BACKEND="redis://redis:6379/0"