teilchensammler/justfile

19 lines
262 B
Makefile

deps:
pip-compile-multi --uv
sync:
pip-sync requirements/dev.txt
lint: lint-ruff lint-django
lint-ruff:
ruff check .
lint-django:
python -m django check
serve:
python -m django runserver
test *ARGS:
ENV_PATH=.env.test python -m pytest {{ARGS}}