Makes group's logo non-compulsory
[xnet] / Makefile
... / ...
CommitLineData
1MANAGE_PY = python manage.py
2
3
4default: all
5
6
7all:
8
9
10run:
11 $(MANAGE_PY) runserver
12
13shell:
14 $(MANAGE_PY) shell
15
16test:
17 $(MANAGE_PY) test example accounts site
18
19resetdb:
20 rm -f xnet/db.sqlite
21 $(MANAGE_PY) syncdb --noinput