7559c4c5a8dede28c6dd6c5373caa30c38a26a8c
- 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>
Site11 - Microservices Architecture
Overview
Microservices platform with Console as API Gateway orchestrating multiple domain services.
Quick Start
Start Services
# Start console service
docker-compose up -d console-backend
# Check status
curl http://localhost:8011/health
Available Endpoints
http://localhost:8011/- Root endpointhttp://localhost:8011/health- Health checkhttp://localhost:8011/api/status- System status
Architecture
- Console: API Gateway and orchestrator
- Services: Domain-specific microservices (users, oauth, images, etc.)
- Database: MongoDB for persistence
- Cache: Redis for caching and pub/sub
Development
See docs/PLAN.md for implementation roadmap and docs/PROGRESS.md for current status.
Description
Languages
Python
80.8%
TypeScript
13.3%
Shell
4.9%
Dockerfile
0.7%
Makefile
0.2%