-
Notifications
You must be signed in to change notification settings - Fork 3
/
prod.env
33 lines (24 loc) · 796 Bytes
/
prod.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Environment production variables
SECRET_KEY=<secret_key>
# Config DB
DB_ENGINE=django.db.backends.postgresql_psycopg2
DB_NAME=backend_db
DB_HOST=db
DB_PORT=5432
DB_USER=<db_user>
DB_PASS=<db_password>
# Config environment type (choices: ['local', 'stage', 'prod', 'test']
ENVIRONMENT=prod
DJANGO_DEBUG=False
RABBITMQ_DEFAULT_USER=<rabbitmq_user>
RABBITMQ_DEFAULT_PASS=<rabbitmq_pass>
HOST_NAME=mjroson.tk
SUBDOMAIN=www
EMAIL_SSL=<[email protected]>
PROJ_NAME=<project_name>
# Docker image tag
IMG_VERSION=latest
# Config scheduler manager task (choices: ['static', 'dynamic'])
# 'dynamic': use http://docs.celeryproject.org/en/latest/userguide/periodic-tasks.html#using-custom-scheduler-classes
# 'static': use CELERYBEAT_SCHEDULE constant in django settings
SCHEDULER_MANAGER=static