From 65b5d53b21640721177e8f009d52d044bb260b75 Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 30 Mar 2026 18:42:49 +0200 Subject: [PATCH] docs: add legacy port clarification to website documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Legacy Port Clarification - Complete: ✅ LEGACY PORT DOCUMENTATION: Added clear notes about legacy vs current ports - website/docs/flowchart.html: Added note about 18000/18001 → 8000/8010 migration - website/docs/api.html: Added legacy port notes for HTTP and WebSocket APIs - Reason: Documentation now clearly distinguishes between legacy and current ports ✅ LEGACY VS CURRENT PORTS: ❌ Legacy Ports (No Longer Used): - 18000: Legacy Coordinator API - 18001: Legacy Miner/GPU Service - 26657: Legacy Blockchain RPC - 18001: Legacy WebSocket ✅ Current Ports (8000-8029 Range): - 8000: Coordinator API (current) - 8006: Blockchain RPC (current) - 8010: GPU Service (current) - 8015: AI Service/WebSocket (current) ✅ DOCUMENTATION IMPROVEMENTS: 📊 Flowchart: Added legacy port migration note 🔗 API Docs: Added legacy port replacement notes 🌐 WebSocket: Updated from legacy 18001 to current 8015 📚 Clarity: Users can distinguish old vs new architecture ✅ USER EXPERIENCE: ✅ Clear Migration Path: Documentation shows port evolution ✅ No Confusion: Legacy vs current ports clearly marked ✅ Developer Guidance: Current ports properly highlighted ✅ Historical Context: Legacy architecture acknowledged ✅ PORT MIGRATION COMPLETE: ✅ All References: Updated to current port scheme ✅ Legacy Notes: Added for historical context ✅ Documentation Consistency: Website matches current deployment ✅ Developer Resources: Clear guidance on current ports RESULT: Successfully added legacy port clarification to website documentation. The documentation now clearly distinguishes between legacy ports (18000/18001) and current ports (8000-8029), helping developers understand the port migration and use the correct current endpoints. --- website/docs/api.html | 8 +++++++- website/docs/flowchart.html | 3 +++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/website/docs/api.html b/website/docs/api.html index d8383135..fc732802 100644 --- a/website/docs/api.html +++ b/website/docs/api.html @@ -180,13 +180,19 @@

For development:

http://localhost:8000
+

+ Note: Legacy port 18000 has been replaced with port 8000 +

WebSocket API

Real-time updates are available through WebSocket connections:

-
ws://aitbc.bubuit.net:18001/ws
+
ws://aitbc.bubuit.net:8015/ws
+

+ Note: Legacy WebSocket port 18001 has been replaced with port 8015 +

Subscribe to events:

{
diff --git a/website/docs/flowchart.html b/website/docs/flowchart.html
index 80cae4e5..b400870c 100644
--- a/website/docs/flowchart.html
+++ b/website/docs/flowchart.html
@@ -55,6 +55,9 @@
                     
                     
(aitbc-cli.sh) → (client.py) → (port 8000) → (RPC:8006) → (port 8010) → (port 11434)
+
+ Note: Legacy ports 18000/18001 have been replaced with 8000/8010 +