Initial configuration files for magnum-ci.

This commit is contained in:
Roberto Rosario
2015-08-19 01:57:20 -04:00
parent 83974d5656
commit 03b8a6cfc2
4 changed files with 43 additions and 0 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',
}
}

View File

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