Move travis-ci related settings files into their own module.

This commit is contained in:
Roberto Rosario
2015-08-19 01:30:07 -04:00
parent e084445aa4
commit 83974d5656
6 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
from __future__ import unicode_literals
from ..base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mayan_edms',
'USER': 'travis',
}
}