Files
aitbc/website
aitbc 65b5d53b21 docs: add legacy port clarification to website documentation
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.
2026-03-30 18:42:49 +02:00
..

AITBC Website

Production website for the AITBC platform.

File Structure

website/
├── index.html              # Homepage — platform overview & achievements
├── 404.html                # Custom error page
├── aitbc-proxy.conf        # Nginx reverse proxy configuration
├── favicon.svg
├── font-awesome-local.css
├── docs/                   # All documentation (16 pages)
│   ├── index.html          # Docs landing — search, reader-level cards
│   ├── clients.html        # Client guide — jobs, wallet, pricing, API
│   ├── miners.html         # Miner guide — GPU setup, earnings, Ollama
│   ├── developers.html     # Developer guide — SDKs, contributing, bounties
│   ├── full-documentation.html  # Complete technical reference
│   ├── components.html     # Architecture & components overview
│   ├── flowchart.html      # End-to-end system flow diagram
│   ├── api.html            # REST API reference
│   ├── blockchain-node.html
│   ├── coordinator-api.html
│   ├── explorer-web.html
│   ├── marketplace-web.html
│   ├── wallet-daemon.html
│   ├── trade-exchange.html
│   ├── pool-hub.html
│   ├── browser-wallet.html # Redirect → /wallet/
│   ├── css/docs.css        # Shared stylesheet (1,870 lines)
│   └── js/theme.js         # Dark/light theme toggle
└── wallet/
    └── index.html          # Browser wallet landing page

Deployment

Deployed in the AITBC Incus container:

Container IP 10.1.223.93
Domain aitbc.bubuit.net
Docs aitbc.bubuit.net/docs/

Push to live

# Push all files via SSH
scp /home/oib/windsurf/aitbc/website/index.html /home/oib/windsurf/aitbc/website/404.html /home/oib/windsurf/aitbc/website/favicon.svg /home/oib/windsurf/aitbc/website/font-awesome-local.css aitbc-cascade:/var/www/html/
scp /home/oib/windsurf/aitbc/website/docs/*.html aitbc-cascade:/var/www/html/docs/
scp /home/oib/windsurf/aitbc/website/docs/css/docs.css aitbc-cascade:/var/www/html/docs/css/
scp /home/oib/windsurf/aitbc/website/docs/js/theme.js aitbc-cascade:/var/www/html/docs/js/
scp /home/oib/windsurf/aitbc/website/wallet/index.html aitbc-cascade:/var/www/html/wallet/

Key Features

  • Unified header/nav across all 15 doc pages with theme toggle
  • Live search on docs index (client-side, 15-page index)
  • Shared CSS — zero inline <style> blocks, one docs.css
  • Shared JS — theme persistence via theme.js
  • Zero dead links — all href="#" replaced with real targets
  • Font Awesome 6 consistently across all pages
  • Dark/light mode with localStorage persistence