python migration

This commit is contained in:
2026-05-26 14:36:34 -04:00
parent a67815c61a
commit 1ba2aa39d8
694 changed files with 1396 additions and 86487 deletions
+22
View File
@@ -0,0 +1,22 @@
services:
backend:
build: ./server
container_name: dashboard-backend
ports:
- "3001:3001"
environment:
- BROWSE_ROOTS=/host
volumes:
- ./server:/app
# Host file browsing root inside container (adjust HOST_BROWSE_ROOT if needed)
- ${HOST_BROWSE_ROOT:-C:/Users}:/host
restart: unless-stopped
frontend:
build: ./dashboard
container_name: dashboard-frontend
ports:
- "5173:80"
depends_on:
- backend
restart: unless-stopped