|
@@ -29,7 +29,7 @@ DEBUG = True
|
|
|
|
|
|
ALLOWED_HOSTS = []
|
|
|
|
|
|
-# Uncomment this (and adjust as appropriate) to enable django-debug-toolbar
|
|
|
+# Uncomment (and adjust as appropriate) to enable django-debug-toolbar
|
|
|
# INTERNAL_IPS = [
|
|
|
# '127.0.0.1',
|
|
|
# ]
|
|
@@ -67,7 +67,8 @@ INSTALLED_APPS = [
|
|
|
"modelcluster",
|
|
|
"taggit",
|
|
|
"wagtailfontawesomesvg",
|
|
|
- "debug_toolbar",
|
|
|
+ # Uncomment to enable django-debug-toolbar
|
|
|
+ # "debug_toolbar",
|
|
|
"django_extensions",
|
|
|
"django.contrib.admin",
|
|
|
"django.contrib.auth",
|
|
@@ -79,7 +80,8 @@ INSTALLED_APPS = [
|
|
|
]
|
|
|
|
|
|
MIDDLEWARE = [
|
|
|
- "debug_toolbar.middleware.DebugToolbarMiddleware",
|
|
|
+ # Uncomment to enable django-debug-toolbar
|
|
|
+ # "debug_toolbar.middleware.DebugToolbarMiddleware",
|
|
|
"django.middleware.security.SecurityMiddleware",
|
|
|
"django.contrib.sessions.middleware.SessionMiddleware",
|
|
|
"django.middleware.common.CommonMiddleware",
|