Files
mayan-edms/mayan/settings/testing/docker/db_postgres.py
T
2017-07-21 23:49:51 -04:00

14 lines
277 B
Python

from __future__ import absolute_import
from .base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'postgres',
'HOST': 'localhost',
'PORT': '5432',
}
}