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

14 lines
257 B
Python

from __future__ import unicode_literals
from .base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mayan',
'USER': 'root',
'HOST': '127.0.0.1',
'PORT': '3306',
}
}