Spotter-VM/pandora/srv/pandora/conf/local_settings.py

22 lines
454 B
Python
Raw Normal View History

DATABASES = {
'default': {
2018-01-18 13:39:39 +01:00
'HOST': '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
BROKER_URL = 'amqp://pandora:${PANDORA_RABBIT_PWD}@rabbitmq:5672//pandora'
EMAIL_HOST = 'postfix'
XACCELREDIRECT = True
GOOGLE_API_KEY = 'AIzaSyBvIF3D550tlpL6o1xRrDurGo-81VhHlOw'
2017-11-29 21:27:11 +01:00
DEBUG = True
JSON_DEBUG = DEBUG