diff options
Diffstat (limited to 'master/custom/autotua_settings.py')
-rw-r--r-- | master/custom/autotua_settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/master/custom/autotua_settings.py b/master/custom/autotua_settings.py new file mode 100644 index 0000000..b038853 --- /dev/null +++ b/master/custom/autotua_settings.py @@ -0,0 +1,9 @@ +import os +from settings import * + +_cwd = os.path.dirname(__file__) + +MEDIA_PREFIX = '/site_media/' +TEMPLATE_DIRS += os.path.join(_cwd, 'master', 'templates').replace('\\', '/'), +INSTALLED_APPS += ('master',) +MEDIA_ROOT = os.path.join(_cwd, 'master', 'media').replace('\\', '/') |