diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-09 15:14:47 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-09 15:14:47 -0400 |
| commit | ef657f999a83c91b71c742f99d5ce0435a840967 (patch) | |
| tree | 8f0d33e4f553496539a35c5624ee0a079a064ff9 | |
| parent | 0957977a439d0ca8f33cf6b3c7f2457b0bbf7cd6 (diff) | |
| download | dispatch-tracker-ef657f999a83c91b71c742f99d5ce0435a840967.tar.gz dispatch-tracker-ef657f999a83c91b71c742f99d5ce0435a840967.tar.xz | |
Added instructions to the readme
| -rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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 +``` + |
