docs: update port 8000 references to 8011 in project/cli docs
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has started running
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled

- Update project/cli/CLI_DOCUMENTATION.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
This commit is contained in:
aitbc
2026-05-08 21:46:41 +02:00
parent c002759322
commit afad336ccb

View File

@@ -211,7 +211,7 @@ source venv/bin/activate
### Environment Variables ### Environment Variables
```bash ```bash
export AITBC_COORDINATOR_URL="http://localhost:8000" export AITBC_COORDINATOR_URL="http://localhost:8011"
export AITBC_API_KEY="your-api-key" export AITBC_API_KEY="your-api-key"
export AITBC_RPC_URL="http://localhost:8006" export AITBC_RPC_URL="http://localhost:8006"
``` ```
@@ -246,7 +246,7 @@ The CLI uses configuration from `/etc/aitbc/.env` by default.
## Service Integration ## Service Integration
### Service Endpoints ### Service Endpoints
- **Coordinator API**: http://localhost:8000 - **Coordinator API**: http://localhost:8011
- **Exchange API**: http://localhost:8001 - **Exchange API**: http://localhost:8001
- **Blockchain RPC**: http://localhost:8006 - **Blockchain RPC**: http://localhost:8006
- **Ollama**: http://localhost:11434 - **Ollama**: http://localhost:11434
@@ -254,7 +254,7 @@ The CLI uses configuration from `/etc/aitbc/.env` by default.
### Health Checks ### Health Checks
```bash ```bash
# Check all services # 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:8001/api/health
curl -s http://localhost:8006/health curl -s http://localhost:8006/health
curl -s http://localhost:11434/api/tags curl -s http://localhost:11434/api/tags
@@ -328,7 +328,7 @@ systemctl status aitbc-exchange-api.service
systemctl status aitbc-blockchain-node.service systemctl status aitbc-blockchain-node.service
# Check network connectivity # Check network connectivity
curl -s http://localhost:8000/health curl -s http://localhost:8011/health
``` ```
#### Permission Errors #### Permission Errors