Step 4: Frontend Skeleton - React + Vite + Material-UI dashboard

- Created React application with TypeScript and Material-UI
- Implemented dashboard with service health monitoring
- Added Services and Users management pages
- Configured Nginx as reverse proxy to backend
- Successfully integrated frontend with Console backend

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
jungwoo choi
2025-09-10 16:30:11 +09:00
parent 683305918c
commit 4b2be7ccaf
14 changed files with 762 additions and 0 deletions

View File

@ -1,6 +1,19 @@
version: '3.8'
services:
console-frontend:
build:
context: ./console/frontend
dockerfile: Dockerfile
container_name: site11_console_frontend
ports:
- "3000:80"
networks:
- site11_network
restart: unless-stopped
depends_on:
- console-backend
console-backend:
build:
context: ./console/backend