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