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

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Console - Microservices Dashboard</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>