This commit is contained in:
counterweight 2025-12-18 21:37:28 +01:00
commit a764c92a0b
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
11 changed files with 1081 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
.PHONY: install-backend install-frontend install backend frontend
install-backend:
cd backend && uv sync
install-frontend:
cd frontend && npm install
install: install-backend install-frontend
backend:
cd backend && uv run uvicorn main:app --reload
frontend:
cd frontend && npm run dev