teilchensammler/justfile
2025-03-12 21:17:46 +01:00

16 lines
208 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