mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 06:04:18 +00:00
18 lines
335 B
Makefile
Executable file
18 lines
335 B
Makefile
Executable file
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 --settings=config.local
|
|
|
|
clean:
|
|
rm -rf *.pyc
|