13 lines
336 B
Python
13 lines
336 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from .. import * # NOQA
|
|
|
|
INSTALLED_APPS += ('test_without_migrations',)
|
|
|
|
COMMON_PRODUCTION_ERROR_LOG_PATH = '/tmp/mayan-errors.log'
|
|
|
|
TEMPLATES[0]['OPTIONS']['loaders'] = (
|
|
'django.template.loaders.filesystem.Loader',
|
|
'django.template.loaders.app_directories.Loader',
|
|
)
|