diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-08-12 11:03:13 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-08-12 11:03:13 +0100 |
commit | c5520d477585361bcd319897d00f93aa31a30ffd (patch) | |
tree | 2892bbc08ed057a3aade89707c731b5f07775d1b | |
parent | 2cbe9ea65ddd9643c61760cca77f06f9e603d53f (diff) |
updated README with bootstrapping
-rw-r--r-- | README.rst | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -34,4 +34,18 @@ Workflow is currently to add Person, User and Stakeholder objects in the Admin. We would also want to restricted Stakeholder users from being able to do anything in the system other than X. +Bootstrap +######### + +..code-block:: bash|python|text + :linenos: + + sudo -u postgres psql postgres + DROP DATABASE ctrack; + CREATE DATABASE ctrack; + \q + ./utility/trunc_and_populate.sh + python manage.py migrate + python manage.py createsuperuser + python manager.py runserver |