Add make file entries to launch a MySQL container

as use as a testing database.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-06-07 02:06:10 -04:00
parent 9840851109
commit 845826ba70
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from __future__ import unicode_literals
from .base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mayan_edms',
'USER': 'root',
'HOST': '127.0.0.1',
'PORT': '3306',
}
}