Files
mayan-edms/mayan/settings/testing/docker.py
2017-06-16 18:15:12 -04:00

17 lines
376 B
Python

from __future__ import absolute_import
from ..production import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'postgres',
'HOST': 'localhost',
'PORT': '5432',
}
}
BROKER_URL = 'redis://127.0.0.1:6379/0'
CELERY_RESULT_BACKEND = 'redis://127.0.0.1:6379/0'