diff options
| author | Rob Hudson | 2008-09-11 15:31:02 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2008-09-11 15:31:02 -0700 | 
| commit | ca99f4688fc70fb74bb2510a0aaaf4914a2c7aa9 (patch) | |
| tree | 4a74a4607bcd9985d0f4bda180aa1cc3fcf0b2ba | |
| parent | 440ecb759d6764680ce3f1a6dad0dfaa3a5a9e89 (diff) | |
| download | django-debug-toolbar-ca99f4688fc70fb74bb2510a0aaaf4914a2c7aa9.tar.bz2 | |
Adding notes about the INTERNAL_IPS setting for this to work.
| -rw-r--r-- | README.rst | 5 | 
1 files changed, 5 insertions, 0 deletions
| @@ -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. | 
