12 lines
212 B
Python
12 lines
212 B
Python
from __future__ import unicode_literals
|
|
|
|
from ..base import * # NOQA
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'mayan_edms',
|
|
'USER': 'travis',
|
|
}
|
|
}
|