File: README.rst

package info (click to toggle)
python-django-debug-toolbar 1%3A1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,480 kB
  • sloc: python: 3,346; makefile: 191; sh: 1
file content (29 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
README
======

About
-----

This sample project demonstrates how to use the debug toolbar. It is designed
to run under the latest stable version of Django.

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

The following commands must be run from the root directory of a checkout of
the debug toolbar, ie. the directory that contains ``example/``.

Before running the example for the first time, you must create a database::

    $ PYTHONPATH=. django-admin migrate --settings=example.settings

Then you can use the following command to run the example::

    $ PYTHONPATH=. django-admin runserver --settings=example.settings