Add React frontend and clean up legacy HTTP backend

This commit is contained in:
Tim
2026-06-15 22:20:56 +02:00
parent b8e2d15e27
commit beaf142ee4
40 changed files with 8328 additions and 437 deletions
+13 -2
View File
@@ -1,7 +1,18 @@
services:
api:
backend:
build: .
ports:
- "5000:5000"
volumes:
- ./:/app
- ./:/app
frontend:
image: node:22-alpine
working_dir: /app
volumes:
- ./frontend:/app
ports:
- "5173:5173"
command: sh -c "npm install && npm run dev -- --host"
depends_on:
- backend