Step 2: Add Users microservice with API Gateway routing

- Created Users service with full CRUD operations
- Updated Console to act as API Gateway for Users service
- Implemented service-to-service communication
- Added service health monitoring in Console
- Docker Compose now manages both services

Services running:
- Console (API Gateway): http://localhost:8011
- Users service: Internal network only

Test endpoints:
- Status: curl http://localhost:8011/api/status
- Users: curl http://localhost:8011/api/users/users

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
jungwoo choi
2025-09-10 16:09:36 +09:00
parent 52b76d0e77
commit 7559c4c5a8
6 changed files with 237 additions and 11 deletions

View File

@ -0,0 +1,3 @@
fastapi==0.109.0
uvicorn[standard]==0.27.0
pydantic==2.5.3