This commit is contained in:
Team3
2026-07-24 22:39:23 +02:00
commit 92889711a0
27 changed files with 2640 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: test dev build web
test:
cd backend && python3 -m pytest -q
# Entwicklung: Backend (8200) + Vite (5274)
dev:
cd backend && uvicorn server:app --reload --port 8200 & \
cd frontend && npx vite --port 5274
# Produktion: Frontend bauen, dann nur den Server starten (serviert frontend/dist)
build:
cd frontend && npm install && npm run build
web:
cd backend && uvicorn server:app --port 8200