aboutsummaryrefslogtreecommitdiffstats
path: root/example/README.rst
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-14 14:30:18 -0700
committerAymeric Augustin2013-10-14 14:30:18 -0700
commit188682a4bbb06e1181d30d624ec37f727e8f6a5e (patch)
tree7226ed441ddc5b849432637fb08a0ca9d5995122 /example/README.rst
parent87c314de8ff024d17b0a8eebb853e203e375fc12 (diff)
parent1af4317555c3c1d622f8811bf9b1517d409bfb55 (diff)
downloaddjango-debug-toolbar-188682a4bbb06e1181d30d624ec37f727e8f6a5e.tar.bz2
Merge pull request #408 from aaugustin/modernize-example-project
Modernize example project. Fix #406.
Diffstat (limited to 'example/README.rst')
-rw-r--r--example/README.rst26
1 files changed, 26 insertions, 0 deletions
diff --git a/example/README.rst b/example/README.rst
new file mode 100644
index 0000000..aa044b9
--- /dev/null
+++ b/example/README.rst
@@ -0,0 +1,26 @@
+README
+======
+
+About
+-----
+
+This sample project demonstrates how to use the debug toolbar. It is designed
+to run under the latest stable version of Django, currently 1.5.x.
+
+It also provides a few test pages to ensure the debug toolbar doesn't
+interfere with common JavaScript frameworks.
+
+How to
+------
+
+The test project requires a working installation of Django::
+
+ $ pip install Django
+
+Before running the example for the first time, you must create a database::
+
+ $ django-admin.py syncdb --settings=example.settings
+
+Then you can use the following command to run the example::
+
+ $ django-admin.py runserver --settings=example.settings