Web CAD - complete TypeScript source (React 18 frontend, Node.js backend, CRDT collaboration, KI Copilot)

This commit is contained in:
Agent Zero
2026-06-28 10:10:50 +02:00
commit 9edce1947c
129 changed files with 32721 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
version: '3.8'
services:
backend:
build: ./backend
ports:
- "5000:5000"
environment:
- NODE_ENV=production
- JWT_SECRET=6151504445a6e5defbe6888f91d002bbd5368f0af5dc38ce6bf25606818f0b3b
volumes:
- sqlite_data:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:5000/api/health || exit 1"]
interval: 10s
timeout: 5s
retries: 5
frontend:
build: ./frontend
expose:
- "80"
depends_on:
- backend
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:80 || exit 1"]
interval: 10s
timeout: 5s
retries: 5
volumes:
sqlite_data: