docs: update port 8000 references to 8011 in infrastructure docs
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled

- Update infrastructure/migration/microservices-migration-status.md: coordinator URL 8000 → 8011
- Update apps/infrastructure/api-gateway.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
This commit is contained in:
aitbc
2026-05-08 21:45:35 +02:00
parent c3f1d66c40
commit ccd936a3b6
2 changed files with 7 additions and 7 deletions

View File

@@ -71,7 +71,7 @@ Service URLs are configured in `main.py` under the `SERVICES` dictionary.
### Health Check
```bash
curl http://localhost:8080/health
curl http://localhost:8011/health
```
Expected response:
@@ -81,22 +81,22 @@ Expected response:
### Service Registry
```bash
curl http://localhost:8080/services
curl http://localhost:8011/services
```
### Test Routing
```bash
# Route to GPU service
curl http://localhost:8080/gpu/health
curl http://localhost:8011/gpu/health
# Route to Marketplace service
curl http://localhost:8080/marketplace/health
curl http://localhost:8011/marketplace/health
# Route to Trading service
curl http://localhost:8080/trading/health
curl http://localhost:8011/trading/health
# Route to Governance service
curl http://localhost:8080/governance/health
curl http://localhost:8011/governance/health
```
## Architecture