2025-03-12 17:29:38 +01:00
|
|
|
deps:
|
|
|
|
pip-compile-multi --uv
|
|
|
|
|
|
|
|
sync:
|
|
|
|
pip install -r requirements/dev.txt
|
|
|
|
|
2025-03-12 18:16:29 +01:00
|
|
|
lint: lint-ruff lint-django
|
|
|
|
|
|
|
|
lint-ruff:
|
2025-03-12 17:29:38 +01:00
|
|
|
ruff check .
|
2025-03-12 18:16:29 +01:00
|
|
|
|
|
|
|
lint-django:
|
|
|
|
python -m django check
|
2025-03-12 21:17:46 +01:00
|
|
|
|
|
|
|
serve:
|
|
|
|
python -m django runserver
|
2025-03-13 17:14:54 +01:00
|
|
|
|
|
|
|
test *ARGS:
|
|
|
|
python -m pytest {{ARGS}}
|