Files
mayan-edms/mayan/settings/testing/base.py
Eric Riggs 9fbedd244c - Put the log file in the /tmp folder.
- This is temporary and should be fixed. Create /media when not found?

Signed-off-by: Eric Riggs <ericriggs42@gmail.com>
2018-04-22 13:51:14 -04:00

11 lines
317 B
Python

from __future__ import absolute_import, unicode_literals
from .. import * # NOQA
COMMON_PRODUCTION_ERROR_LOG_PATH = '/tmp'
INSTALLED_APPS += ('test_without_migrations',)
TEMPLATES[0]['OPTIONS']['loaders'] = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)