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

14 lines
262 B
Python

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