Skip to content

Commit

Permalink
add django-debug-toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarbaugh committed Dec 11, 2009
1 parent b3d2695 commit 8980078
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
@@ -1,4 +1,5 @@
Django
feedparser
django-debug-toolbar
-e git://github.com/sunlightlabs/django-feedinator.git#egg=feedinator
-e hg+http://bitbucket.org/jespern/django-piston/#egg=piston
4 changes: 4 additions & 0 deletions settings.py
Expand Up @@ -59,6 +59,7 @@
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'debug_toolbar.middleware.DebugToolbarMiddleware',
)

ROOT_URLCONF = 'realtimecongress_server.urls'
Expand All @@ -71,8 +72,11 @@
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'debug_toolbar',
)

INTERNAL_IPS = ('127.0.0.1',)

try:
from local_settings import *
except ImportError:
Expand Down

0 comments on commit 8980078

Please sign in to comment.