From 0684d3f043996967ffa4828e00fc99e0d65eaf4f Mon Sep 17 00:00:00 2001 From: Rodolfo Carvalho Date: Sun, 24 May 2015 13:09:31 +0200 Subject: [PATCH] Add Django Debug Toolbar --- project/settings.py | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/project/settings.py b/project/settings.py index 48d6df7..2f0b7a7 100644 --- a/project/settings.py +++ b/project/settings.py @@ -42,6 +42,7 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'debug_toolbar', ) MIDDLEWARE_CLASSES = ( diff --git a/requirements.txt b/requirements.txt index f68902b..a7f88f2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ Django==1.8.1 psycopg2==2.6 gunicorn==19.3.0 whitenoise==1.0.6 +django-debug-toolbar==1.3.0