aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorRob Hudson2008-09-11 15:31:02 -0700
committerRob Hudson2008-09-11 15:31:02 -0700
commitca99f4688fc70fb74bb2510a0aaaf4914a2c7aa9 (patch)
tree4a74a4607bcd9985d0f4bda180aa1cc3fcf0b2ba /README.rst
parent440ecb759d6764680ce3f1a6dad0dfaa3a5a9e89 (diff)
downloaddjango-debug-toolbar-ca99f4688fc70fb74bb2510a0aaaf4914a2c7aa9.tar.bz2
Adding notes about the INTERNAL_IPS setting for this to work.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index 44aba49..2857fe9 100644
--- a/README.rst
+++ b/README.rst
@@ -36,6 +36,11 @@ Installation
must come after any other middleware that encodes the response's content
(such as GZipMiddleware).
+#. Make sure your IP is listed in the `INTERNAL_IPS` setting. If you are
+ working locally this will be:
+
+ INTERNAL_IPS = ('127.0.0.1',)
+
#. Add a tuple called `DEBUG_TOOLBAR_PANELS` to your ``settings.py`` file that
specifies the full Python path to the panel that you want included in the
Toolbar. This setting looks very much like the `MIDDLEWARE_CLASSES` setting.