From c0027593222720f5933271924db76cfc9a59e5d3 Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 8 May 2026 21:46:19 +0200 Subject: [PATCH] docs: update port 8000 references to 8011 in infrastructure and security docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update apps/infrastructure/monitor.md: endpoint 8000 → 8011 - Update security/policies/DOTENV_DISCIPLINE.md: API_URL 8000 → 8011 - More documentation files still need port 8000 → 8011 updates --- docs/apps/infrastructure/monitor.md | 2 +- docs/security/policies/DOTENV_DISCIPLINE.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/apps/infrastructure/monitor.md b/docs/apps/infrastructure/monitor.md index 266c1a41..a38ed99d 100644 --- a/docs/apps/infrastructure/monitor.md +++ b/docs/apps/infrastructure/monitor.md @@ -102,7 +102,7 @@ Content-Type: application/json { "service_name": "string", - "endpoint": "http://localhost:8000/health", + "endpoint": "http://localhost:8011/health", "interval": 60, "timeout": 10 } diff --git a/docs/security/policies/DOTENV_DISCIPLINE.md b/docs/security/policies/DOTENV_DISCIPLINE.md index 0729c1c4..8eb52e39 100644 --- a/docs/security/policies/DOTENV_DISCIPLINE.md +++ b/docs/security/policies/DOTENV_DISCIPLINE.md @@ -104,7 +104,7 @@ DATABASE_URL=sqlite:///./data/coordinator.db # ============================================================================= # API CONFIGURATION # ============================================================================= -API_URL=http://localhost:8000 +API_URL=http://localhost:8011 ADMIN_API_KEY=your-admin-key-here # =============================================================================