Mauro Murari | 52101a5 | 2017-07-13 13:19:38 -0300 | [diff] [blame] | 1 | pip: |
2 | @pip install -r requirements.txt | ||||
3 | |||||
4 | |||||
5 | syncdb: | ||||
6 | @python manage.py syncdb | ||||
7 | |||||
8 | |||||
9 | run: | ||||
10 | @python manage.py runserver 0.0.0.0:8000 | ||||
11 | |||||
12 | |||||
13 | setup: pip syncdb run | ||||
14 | |||||
15 | |||||
16 | shell: | ||||
17 | @python manage.py shell | ||||
18 | |||||
19 | |||||
20 | test: | ||||
21 | @python manage.py test |