Files
mayan-edms/mayan/settings/testing/gitlab-ci/db_mysql.py
2016-11-08 18:19:49 -04:00

14 lines
258 B
Python

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