Switch to uv (#1172)

This commit is contained in:
Sascha Ißbrücker
2025-08-23 07:37:25 +02:00
committed by GitHub
parent 6c874afff2
commit b90ae1b202
18 changed files with 867 additions and 244 deletions

View File

@@ -1,15 +1,23 @@
.PHONY: serve
init:
uv sync
uv run manage.py migrate
npm install
serve:
python manage.py runserver
uv run manage.py runserver
tasks:
python manage.py run_huey
uv run manage.py run_huey
test:
pytest -n auto
uv run pytest -n auto
format:
black bookmarks
uv run black bookmarks
npx prettier bookmarks/frontend --write
npx prettier bookmarks/styles --write
frontend:
npm run dev