pokeapi/Makefile
2016-03-05 09:27:25 +00:00

24 lines
399 B
Makefile
Executable file

install:
pip install -r requirements.txt
dev-install:
pip install -r test-requirements.txt
lint:
flake8 .
setup:
python manage.py migrate --settings=config.local
python manage.py loaddata dev-data.json --settings=config.local
wipe_db:
rm -rf db.sqlite3
serve:
python manage.py runserver --settings=config.local
test:
python manage.py test --settings=config.local
clean:
rm -rf *.pyc