Initial commit of VIZ 3D project

This commit is contained in:
balaji
2026-06-10 16:10:18 +05:30
commit 08aea85c2f
37 changed files with 13118 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
web:
restart: always
build:
context: .
target: development
ports:
- "3000:3000"
volumes:
# Map the host source code to the container for hot-reloading
- .:/app
# Prevents the container's node_modules from being overwritten by the host
- /app/node_modules
environment:
- NODE_ENV=development
# Optional: ensure container runs smoothly on Windows host
stdin_open: true
tty: true