From ef657f999a83c91b71c742f99d5ce0435a840967 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 9 Oct 2017 15:14:47 -0400 Subject: Added instructions to the readme --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 8900603..56549f0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,22 @@ # dispatch-tracker + +To get a development system setup: + + +``` bash +cd app +virtualenv env +. env/bin/activate +pip install -r requirements.txt +./manage.py migrate +./manage.py createsuperuser +# This will create some fake records if you wish +./manage.py insert_fake_data --companies 10 --users 10 \ + --loads 400 --start-date='-16w' --end-date='+16w' + # Default is 2 weeks for start/end date, no + # defaults for any other options +# Run a local development server, listens to the world +./manage.py runserver 0.0.0.0:8080 +``` + -- cgit v1.2.3