Files
linkding/Makefile
Sascha Ißbrücker b90ae1b202 Switch to uv (#1172)
2025-08-23 07:37:25 +02:00

23 lines
306 B
Makefile

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