Skip to content
Snippets Groups Projects
Commit 5cfd4fef authored by Branson Stephens's avatar Branson Stephens
Browse files

added debug toolbar

parent 6376be50
No related branches found
No related tags found
No related merge requests found
......@@ -58,3 +58,33 @@ TEMPLATE_DIRS = (
# Don't forget to use absolute paths, not relative paths.
"/home/branson/gracedbdev/templates",
)
MIDDLEWARE_CLASSES = [
'middleware.accept.AcceptMiddleware',
'middleware.cli.CliExceptionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'ligodjangoauth.LigoShibbolethMiddleware',
'gracedb.middleware.auth.LigoAuthMiddleware',
'debug_toolbar.middleware.DebugToolbarMiddleware',
]
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.staticfiles',
'gracedb',
'userprofile',
'rest_framework',
'south',
'debug_toolbar',
)
INTERNAL_IPS = (
'129.89.61.55',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment