aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installation.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/installation.rst')
-rw-r--r--docs/installation.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index 5d046a2..2522e34 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -22,13 +22,18 @@ instead with the following command::
Quick setup
-----------
-Add ``debug_toolbar`` to your ``INSTALLED_APPS`` setting::
+Make sure that ``'django.contrib.staticfiles'`` is set up properly and add
+``'debug_toolbar'`` to your ``INSTALLED_APPS`` setting::
INSTALLED_APPS = (
# ...
+ 'django.contrib.staticfiles',
+ # ...
'debug_toolbar',
)
+ STATIC_URL = '/static/'
+
For a simple Django project, that's all you need!
The Debug Toolbar will automatically adjust a few settings when you start the