From ccd936a3b602715db8f28e308b54f5a65fe88db1 Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 8 May 2026 21:45:35 +0200 Subject: [PATCH] docs: update port 8000 references to 8011 in infrastructure docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- docs/apps/infrastructure/api-gateway.md | 12 ++++++------ .../migration/microservices-migration-status.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/apps/infrastructure/api-gateway.md b/docs/apps/infrastructure/api-gateway.md index dca01df9..db3c8b15 100644 --- a/docs/apps/infrastructure/api-gateway.md +++ b/docs/apps/infrastructure/api-gateway.md @@ -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 diff --git a/docs/infrastructure/migration/microservices-migration-status.md b/docs/infrastructure/migration/microservices-migration-status.md index 3f6faa10..8951ad6b 100644 --- a/docs/infrastructure/migration/microservices-migration-status.md +++ b/docs/infrastructure/migration/microservices-migration-status.md @@ -254,7 +254,7 @@ gpu_service_url: str = "http://localhost:8101" marketplace_service_url: str = "http://localhost:8102" trading_service_url: str = "http://localhost:8104" governance_service_url: str = "http://localhost:8105" -coordinator_url: str = "http://localhost:8000" # Deprecated, for backward compatibility +coordinator_url: str = "http://localhost:8011" # Deprecated, for backward compatibility ``` ## Migration Status