From c3f1d66c40730720c967ef3c2fd919fffc2662cd Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 8 May 2026 21:44:50 +0200 Subject: [PATCH] docs: update port 8000 references to 8011 in apps/clients docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update apps/clients/1_quick-start.md: coordinator URL 8000 → 8011 - Update apps/clients/3_job-lifecycle.md: API endpoints 8000 → 8011 - More documentation files still need port 8000 → 8011 updates --- docs/apps/clients/1_quick-start.md | 2 +- docs/apps/clients/3_job-lifecycle.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/apps/clients/1_quick-start.md b/docs/apps/clients/1_quick-start.md index f6bd9913..a64aa72b 100644 --- a/docs/apps/clients/1_quick-start.md +++ b/docs/apps/clients/1_quick-start.md @@ -6,7 +6,7 @@ ```bash pip install -e . # from monorepo root -aitbc config set coordinator_url http://localhost:8000 +aitbc config set coordinator_url http://localhost:8011 export AITBC_API_KEY=your-key # Verify installation diff --git a/docs/apps/clients/3_job-lifecycle.md b/docs/apps/clients/3_job-lifecycle.md index 1e9891b1..5b79c293 100644 --- a/docs/apps/clients/3_job-lifecycle.md +++ b/docs/apps/clients/3_job-lifecycle.md @@ -26,7 +26,7 @@ aitbc client status --job-id import requests response = requests.get( - "http://localhost:8000/v1/jobs/{job_id}", + "http://localhost:8011/v1/jobs/{job_id}", headers={"X-Api-Key": "your-key"} ) print(response.json()) @@ -106,7 +106,7 @@ aitbc client download --job-id --output ./results import requests response = requests.get( - "http://localhost:8000/v1/jobs/{job_id}/download", + "http://localhost:8011/v1/jobs/{job_id}/download", headers={"X-Api-Key": "your-key"} )