22 lines
413 B
Python
22 lines
413 B
Python
DATABASES = {
|
|
'default': {
|
|
'HOST': 'postgres',
|
|
'NAME': 'pandora',
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'USER': 'pandora',
|
|
'PASSWORD': '${PANDORA_PWD}',
|
|
}
|
|
}
|
|
DB_GIN_TRGM = True
|
|
|
|
BROKER_URL = 'amqp://pandora:${PANDORA_RABBIT_PWD}@rabbitmq:5672//pandora'
|
|
|
|
EMAIL_HOST = 'host'
|
|
|
|
XACCELREDIRECT = True
|
|
|
|
GOOGLE_API_KEY = ''
|
|
|
|
DEBUG = False
|
|
JSON_DEBUG = DEBUG
|