Spotter-VM/lxc-apps/pandora/install/pandora_conf/local_settings.py

22 lines
436 B
Python
Raw Normal View History

DATABASES = {
'default': {
2019-10-05 16:34:10 +02:00
'HOST': 'pandora-postgres',
'NAME': 'pandora',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'pandora',
'PASSWORD': '${PANDORA_PWD}',
}
}
DB_GIN_TRGM = True
2018-02-03 13:36:09 +01:00
2020-03-22 14:54:16 +01:00
CELERY_BROKER_URL = 'amqp://pandora:${PANDORA_RABBIT_PWD}@pandora-rabbitmq:5672//pandora'
2018-02-03 13:36:09 +01:00
2018-09-14 11:24:04 +02:00
EMAIL_HOST = 'host'
2018-02-03 13:36:09 +01:00
XACCELREDIRECT = True
2018-08-02 10:41:40 +02:00
GOOGLE_API_KEY = ''
2019-10-05 15:18:36 +02:00
DEBUG = False
2017-11-29 21:27:11 +01:00
JSON_DEBUG = DEBUG