mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 19:33:10 +00:00
19 lines
343 B
Makefile
19 lines
343 B
Makefile
|
install:
|
||
|
sudo pip install -r requirements.txt
|
||
|
|
||
|
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 pokemon --settings=config.local
|
||
|
|
||
|
clean:
|
||
|
rm -rf *.pyc
|