62 lines
1.2 KiB
Markdown
62 lines
1.2 KiB
Markdown
# Services Status
|
|
|
|
## ✅ All Services Started
|
|
|
|
### Running Services
|
|
|
|
1. **Webapp (Next.js)**
|
|
- Status: ✅ Running
|
|
- URL: http://localhost:3000
|
|
- Port: 3000
|
|
|
|
2. **Orchestrator (Express API)**
|
|
- Status: ✅ Running
|
|
- URL: http://localhost:8080
|
|
- Port: 8080
|
|
- Health Check: http://localhost:8080/health
|
|
- Metrics: http://localhost:8080/metrics
|
|
|
|
### Optional Services (Docker)
|
|
|
|
3. **PostgreSQL Database**
|
|
- Status: ⚠️ Not running (Docker not available)
|
|
- Port: 5432
|
|
- To start: `docker-compose up -d postgres`
|
|
|
|
4. **Redis Cache**
|
|
- Status: ⚠️ Not running (Docker not available)
|
|
- Port: 6379
|
|
- To start: `docker-compose up -d redis`
|
|
|
|
---
|
|
|
|
## Quick Access
|
|
|
|
- **Frontend**: http://localhost:3000
|
|
- **Backend API**: http://localhost:8080
|
|
- **Health Check**: http://localhost:8080/health
|
|
- **API Docs**: http://localhost:8080/api-docs
|
|
|
|
---
|
|
|
|
## Service Management
|
|
|
|
### Stop Services
|
|
- Close the PowerShell windows where services are running
|
|
- Or use `Ctrl+C` in each terminal
|
|
|
|
### Restart Services
|
|
```powershell
|
|
.\scripts\start-all.ps1
|
|
```
|
|
|
|
### Start Database Services (if Docker available)
|
|
```bash
|
|
docker-compose up -d postgres redis
|
|
```
|
|
|
|
---
|
|
|
|
**Last Updated**: 2025-01-15
|
|
|