From afad336ccbbd3eae466352d014077e10cd6bbc01 Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 8 May 2026 21:46:41 +0200 Subject: [PATCH] docs: update port 8000 references to 8011 in project/cli docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update project/cli/CLI_DOCUMENTATION.md: coordinator URL 8000 → 8011 - More documentation files still need port 8000 → 8011 updates --- docs/project/cli/CLI_DOCUMENTATION.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/project/cli/CLI_DOCUMENTATION.md b/docs/project/cli/CLI_DOCUMENTATION.md index f848d2f3..9725abdb 100644 --- a/docs/project/cli/CLI_DOCUMENTATION.md +++ b/docs/project/cli/CLI_DOCUMENTATION.md @@ -211,7 +211,7 @@ source venv/bin/activate ### Environment Variables ```bash -export AITBC_COORDINATOR_URL="http://localhost:8000" +export AITBC_COORDINATOR_URL="http://localhost:8011" export AITBC_API_KEY="your-api-key" export AITBC_RPC_URL="http://localhost:8006" ``` @@ -246,7 +246,7 @@ The CLI uses configuration from `/etc/aitbc/.env` by default. ## Service Integration ### Service Endpoints -- **Coordinator API**: http://localhost:8000 +- **Coordinator API**: http://localhost:8011 - **Exchange API**: http://localhost:8001 - **Blockchain RPC**: http://localhost:8006 - **Ollama**: http://localhost:11434 @@ -254,7 +254,7 @@ The CLI uses configuration from `/etc/aitbc/.env` by default. ### Health Checks ```bash # Check all services -curl -s http://localhost:8000/health +curl -s http://localhost:8011/health curl -s http://localhost:8001/api/health curl -s http://localhost:8006/health curl -s http://localhost:11434/api/tags @@ -328,7 +328,7 @@ systemctl status aitbc-exchange-api.service systemctl status aitbc-blockchain-node.service # Check network connectivity -curl -s http://localhost:8000/health +curl -s http://localhost:8011/health ``` #### Permission Errors