diff options
Diffstat (limited to 'localsettingsWSL.py')
-rw-r--r-- | localsettingsWSL.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/localsettingsWSL.py b/localsettingsWSL.py index 60bbc8b..d6ed07d 100644 --- a/localsettingsWSL.py +++ b/localsettingsWSL.py @@ -34,7 +34,7 @@ DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. 'NAME' : 'troggle.sqlite', - # 'NAME' : ':memory:', +# 'NAME' : ':memory:', 'USER' : 'expo', # Not used with sqlite3. 'PASSWORD' : 'sekrit', # Not used with sqlite3. 'HOST' : '', # Set to empty string for localhost. Not used with sqlite3. @@ -56,12 +56,11 @@ TEMPLATES = [ 'DIRS': [ PYTHON_PATH + "templates" ], -# 'APP_DIRS': True, 'OPTIONS': { 'debug': 'DEBUG', 'context_processors': [ 'django.contrib.auth.context_processors.auth', - 'core.context.troggle_context', + 'core.context.troggle_context', 'django.template.context_processors.debug', 'django.template.context_processors.i18n', 'django.template.context_processors.media', |