feat: initial commit of Vancouver Investment Fund web application

This commit is contained in:
sha
2025-06-20 13:53:19 +03:00
commit d1fa63d3c1
28 changed files with 3177 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "5173:5173"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
- VITE_HMR_PORT=5173
- CHOKIDAR_USEPOLLING=true
- CHOKIDAR_INTERVAL=1000
command: npm run dev -- --host 0.0.0.0 --port 5173
stdin_open: true
tty: true