Files
mayan-edms/mayan/settings/testing/gitlab-ci/db_mysql.py
2015-09-25 00:31:57 -04:00

14 lines
263 B
Python

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