mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-13 23:37:06 +00:00
18 lines
340 B
Makefile
Executable file
18 lines
340 B
Makefile
Executable file
install:
|
|
pip install -r requirements.txt --upgrade
|
|
|
|
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
|