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:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user