aboutsummaryrefslogtreecommitdiff
blob: 7bd2450ac4338537196b2a9a763e1a7ccf8cafd8 (plain)
1
2
3
4
5
6
7
8
9
10
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('\\', '/')
LOGIN_URL        = '/login'