X-Git-Url: https://git.yukkurigames.com/?p=mlpccg-meta.git;a=blobdiff_plain;f=mlpccg-web%2Fsettings.py;h=a7a281483cad8587efb1e67705ffbaf61d31a418;hp=1da064d3a5d3c2fa19604f8424836539acbb0359;hb=fb6094edaa3a1a59060f1382d362b671d4d70468;hpb=f5f267a53e90455937409ad2bd15324e717c8e04 diff --git a/mlpccg-web/settings.py b/mlpccg-web/settings.py index 1da064d..a7a2814 100644 --- a/mlpccg-web/settings.py +++ b/mlpccg-web/settings.py @@ -20,9 +20,9 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__)) SECRET_KEY = 'iqk@e(3cavf&!ewvx_0t8m=p5kh(rl_=td&pe!afhu@fiu%j_w' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True +DEBUG = False -TEMPLATE_DEBUG = True +TEMPLATE_DEBUG = False ALLOWED_HOSTS = [] @@ -60,7 +60,7 @@ WSGI_APPLICATION = 'mlpccg-web.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'NAME': os.path.join(BASE_DIR, 'data/db.sqlite3'), } }