Initial commit - cleaned repository
This commit is contained in:
29
README.md
Normal file
29
README.md
Normal file
@ -0,0 +1,29 @@
|
||||
# Site11 - Microservices Architecture
|
||||
|
||||
## Overview
|
||||
Microservices platform with Console as API Gateway orchestrating multiple domain services.
|
||||
|
||||
## Quick Start
|
||||
|
||||
### Start Services
|
||||
```bash
|
||||
# Start console service
|
||||
docker-compose up -d console-backend
|
||||
|
||||
# Check status
|
||||
curl http://localhost:8011/health
|
||||
```
|
||||
|
||||
### Available Endpoints
|
||||
- `http://localhost:8011/` - Root endpoint
|
||||
- `http://localhost:8011/health` - Health check
|
||||
- `http://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.
|
||||
Reference in New Issue
Block a user