first commit

This commit is contained in:
2025-11-25 16:58:24 +01:00
commit f5f5f10338
17 changed files with 5389 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: dev-db dev-backend dev-frontend build-frontend
dev-db:
docker-compose up -d
dev-backend:
cd backend && cargo run
build-frontend:
cd frontend && wasm-pack build --target web --out-name wasm --out-dir ../backend/static
dev-frontend:
# This is a placeholder. Usually we'd use a dev server or just rebuild.
# For now, we rely on the backend serving the static files.
make build-frontend