aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 3f8f51832501d23f96ef30caea3317eb876301d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# dispatch-tracker


Requirements going forward:

  * Show Recent Changes on Loads ( Django auditlog )
  * Sane Date format on Loads listing for each week
  * /loads
    * Add the description for each load to the individual load
    * Sane date format for each individual day block
    * Sane date format for the title
    * Sane title format
    * Make loads with 0 amount red
    * Make loads without paperwork blue
    * Make loads with paperwork green
  * A way for users to be invited via email
  * Weekly statistics on the "Driver Summary" view
  * Company statistics on the "Company Summary" view
  * Upload paperwork to a load page for retrieval later on
  * More descriptive buttons than "View"/"Edit"


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
```