Initial configuration files for magnum-ci.
This commit is contained in:
0
mayan/settings/testing/magnum/__init__.py
Normal file
0
mayan/settings/testing/magnum/__init__.py
Normal file
11
mayan/settings/testing/magnum/db_mysql.py
Normal file
11
mayan/settings/testing/magnum/db_mysql.py
Normal 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',
|
||||
}
|
||||
}
|
||||
11
mayan/settings/testing/magnum/db_postgres.py
Normal file
11
mayan/settings/testing/magnum/db_postgres.py
Normal 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',
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user