From 5c19dbf23676f9eab23ba390582f7ad6d72723b0 Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Sat, 10 Jun 2017 13:18:54 +1000 Subject: [PATCH] Specify how to create a superuser account in dev To do development you will need a local super user account. This is a standard Django practice but should be documented here as well. --- README.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.rst b/README.rst index a8ab105a..9954972a 100644 --- a/README.rst +++ b/README.rst @@ -69,6 +69,15 @@ Shut down and now run: Now you can run the system and see how it goes. +Admin Credentials +~~~~~~~~~~~~~~~~~ + +To create a local administrator account run: + +``./manage.py createsuperuser`` + +and enter your username, email and password. This can then be used to login to: (http://localhost:8000/admin). + Base Data ~~~~~~~~~