Add testing setting files for gitlab-ci. Improve gitlab-ci config file.

This commit is contained in:
Roberto Rosario
2015-09-24 23:28:36 -04:00
parent ac2a08b90b
commit 6edafc814f
4 changed files with 30 additions and 4 deletions

View File

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