2019-11-26 02:44:14 -08:00
|
|
|
import json
|
|
|
|
import random
|
|
|
|
import string
|
2019-08-23 08:47:19 -07:00
|
|
|
from os import environ as env
|
|
|
|
|
2019-11-26 02:44:14 -08:00
|
|
|
debug = env.get('DEBUG', 'true').lower() == 'true'
|
2019-12-11 09:43:20 -08:00
|
|
|
rabbitmq_host = env.get('RABBITMQ_HOST', 'localhost')
|
2019-12-03 18:26:59 -08:00
|
|
|
backend = env.get('BACKEND', 'postgresql')
|
2019-11-26 02:44:14 -08:00
|
|
|
db_name = env.get('DB_NAME', 'ottertune')
|
|
|
|
db_host = env.get('DB_HOST', 'localhost')
|
|
|
|
db_pwd = env.get('DB_PASSWORD', '')
|
2019-08-23 08:47:19 -07:00
|
|
|
|
2019-11-26 02:44:14 -08:00
|
|
|
if backend == 'mysql':
|
|
|
|
default_user = 'root'
|
|
|
|
default_port = '3306'
|
|
|
|
default_opts = {
|
|
|
|
'init_command': "SET sql_mode='STRICT_TRANS_TABLES',innodb_strict_mode=1",
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
default_user = 'postgres'
|
|
|
|
default_port = '5432'
|
|
|
|
default_opts = {}
|
|
|
|
|
|
|
|
db_user = env.get('DB_USER', default_user)
|
|
|
|
db_port = env.get('DB_PORT', default_port)
|
|
|
|
db_opts = env.get('DB_OPTS', default_opts)
|
|
|
|
if isinstance(db_opts, str):
|
|
|
|
db_opts = json.loads(db_opts) if db_opts else {}
|
|
|
|
|
|
|
|
SECRET_KEY = ''.join(random.choice(string.hexdigits) for _ in range(16))
|
2019-08-23 08:47:19 -07:00
|
|
|
DATABASES = {
|
2019-11-26 02:44:14 -08:00
|
|
|
'default': {'ENGINE': 'django.db.backends.' + backend,
|
|
|
|
'NAME': db_name,
|
2019-08-23 08:47:19 -07:00
|
|
|
'USER': db_user,
|
|
|
|
'PASSWORD': db_pwd,
|
|
|
|
'HOST': db_host,
|
|
|
|
'PORT': db_port,
|
2019-11-26 02:44:14 -08:00
|
|
|
'OPTIONS': db_opts,
|
2019-08-23 08:47:19 -07:00
|
|
|
}
|
|
|
|
}
|
2019-11-26 02:44:14 -08:00
|
|
|
DEBUG = debug
|
2019-08-23 08:47:19 -07:00
|
|
|
ADMINS = ()
|
|
|
|
MANAGERS = ADMINS
|
2019-11-26 02:44:14 -08:00
|
|
|
ALLOWED_HOSTS = ['*']
|
2019-12-11 08:55:19 -08:00
|
|
|
BROKER_URL = 'amqp://guest:guest@{}:5672//'.format(rabbitmq_host)
|