teilchensammler/justfile
2025-03-13 17:14:54 +01:00

19 lines
249 B
Makefile

deps:
pip-compile-multi --uv
sync:
pip install -r 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:
python -m pytest {{ARGS}}