We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7946fc commit e92427bCopy full SHA for e92427b
CONTRIBUTING.rst
@@ -19,3 +19,18 @@ To build the documentation run::
19
20
python setup.py build_sphinx
21
open docs/_build/html/index.html
22
+
23
24
+The sample app
25
+==============
26
27
+To run a full example — e.g. to debug frontend code – you can run::
28
29
+ python setup.py develop
30
+ python /tests/testapp/manage.py migrate
31
+ python /tests/testapp/manage.py createsuperuser
32
+ # You will be asked for the email address of your new superuser
33
+ python /tests/testapp/manage.py runserver
34
35
+Next you can go to https://localhost:8000/admin/ and log in with your newly
36
+created superuser.
0 commit comments