Files
mayan-edms/mayan/settings/testing/docker/db_oracle.py
2017-07-22 04:41:29 -04:00

15 lines
288 B
Python

from __future__ import unicode_literals
from .base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.oracle',
'NAME': 'xe',
'USER': 'system',
'HOST': '127.0.0.1',
'PORT': '49161',
'PASSWORD': 'oracle',
}
}