fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/Makefile

10 lines
220 B
Makefile

quicksetup:
poetry install
poetry run pre-commit install
cp .env.example .env
poetry run python manage.py migrate
poetry run python manage.py loaddata local_data
clean:
if [ -f "local.db" ]; then rm local.db; fi;