diff options
author | Hermann Schwärzler <hermann.schwaerzler@freirad.at> | 2017-07-09 19:31:22 (GMT) |
---|---|---|
committer | Hermann Schwärzler <hermann.schwaerzler@freirad.at> | 2017-07-09 19:31:22 (GMT) |
commit | d10b74d80fe0ef74c2e977d4b580d27282a9ba6c (patch) | |
tree | aa9f791ea97106e27e4b31a3395c9e4dbbfe5cd7 | |
parent | e38c765036a18001b33b73281f34950b6785b5f5 (diff) |
explain final steps to get a running development instance: create an admin user
-rw-r--r-- | README.rst | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -48,9 +48,20 @@ Then run:: (python)$ python manage.py loaddata program/fixtures/*.yaml +Adding an admin user +-------------------- + +In order to create an admin user (which you will need to login to the webinterface after the next step) run:: + + (python)$ python manage.py createsuperuser + + Running a web server -------------------- In development you should run:: (python)$ python manage.py runserver + +After this you can open http://127.0.0.1:8000/admin in your browser and log in with the admin credential you created previously. + |