2018-06-23 19:08:56 +00:00
|
|
|
# These are just some make targets, expressing how things
|
|
|
|
# are supposed to be run, but feel free to change them!
|
|
|
|
|
|
|
|
dev-setup:
|
2019-08-31 22:25:25 +00:00
|
|
|
poetry run pre-commit install
|
|
|
|
poetry run python manage.py migrate
|
|
|
|
poetry run python manage.py createsuperuser
|
2018-06-23 19:08:56 +00:00
|
|
|
|
|
|
|
lint:
|
2019-08-31 22:25:25 +00:00
|
|
|
poetry run pre-commit run --all
|
2018-06-23 19:08:56 +00:00
|
|
|
|
|
|
|
test:
|
2019-08-31 22:25:25 +00:00
|
|
|
poetry run pytest
|