diff --git a/docs/blockchain/IMPLEMENTATION_GUIDE.md b/docs/blockchain/IMPLEMENTATION_GUIDE.md index b1663d01..1539a628 100644 --- a/docs/blockchain/IMPLEMENTATION_GUIDE.md +++ b/docs/blockchain/IMPLEMENTATION_GUIDE.md @@ -92,7 +92,7 @@ AITBC has two blockchain node implementations with different capabilities and de **Setup:** ```bash # Clone main repository -git clone https://gitea.bubuit.net:3000/oib/aitbc.git /opt/aitbc +git clone https://github.com/oib/AITBC.git /opt/aitbc cd /opt/aitbc # Run setup script @@ -171,7 +171,7 @@ sudo systemctl disable aitbc-blockchain-node-3 2. **Clone main repository:** ```bash -sudo git clone https://gitea.bubuit.net:3000/oib/aitbc.git /opt/aitbc +sudo git clone https://github.com/oib/AITBC.git /opt/aitbc cd /opt/aitbc ``` diff --git a/docs/deployment/INTEGRATED_NODE_SETUP.md b/docs/deployment/INTEGRATED_NODE_SETUP.md index 5bc46664..a6de7ce5 100644 --- a/docs/deployment/INTEGRATED_NODE_SETUP.md +++ b/docs/deployment/INTEGRATED_NODE_SETUP.md @@ -30,7 +30,7 @@ See the step-by-step instructions below. ### 1. Clone Repository ```bash -sudo git clone https://gitea.bubuit.net:3000/oib/aitbc.git /opt/aitbc +sudo git clone https://github.com/oib/AITBC.git /opt/aitbc cd /opt/aitbc ``` diff --git a/docs/deployment/SETUP.md b/docs/deployment/SETUP.md index 97eb6a09..ed6f7924 100644 --- a/docs/deployment/SETUP.md +++ b/docs/deployment/SETUP.md @@ -7,13 +7,13 @@ The main setup script lives at `scripts/setup.sh`. Run this single command on any new host to install AITBC: ```bash -sudo bash <(curl -sSL https://gitea.bubuit.net/oib/aitbc/raw/branch/main/scripts/setup.sh) +sudo bash <(curl -sSL https://github.com/oib/AITBC/raw/branch/main/scripts/setup.sh) ``` Or clone and run manually: ```bash -sudo git clone https://gitea.bubuit.net/oib/aitbc.git /opt/aitbc +sudo git clone https://github.com/oib/AITBC.git /opt/aitbc cd /opt/aitbc sudo chmod +x scripts/setup.sh sudo ./scripts/setup.sh diff --git a/docs/hermes/guides/hermes-open-island-guide.md b/docs/hermes/guides/hermes-open-island-guide.md index 0a1db933..ecccd3a5 100644 --- a/docs/hermes/guides/hermes-open-island-guide.md +++ b/docs/hermes/guides/hermes-open-island-guide.md @@ -343,7 +343,7 @@ After setting up your hermes agent: ## Support - **Documentation**: `/opt/aitbc/docs/hermes/` -- **Issues**: https://gitea.bubuit.net/oib/aitbc +- **Issues**: https://github.com/oib/AITBC/issues - **Open Island Guide**: [Open Island Joining Guide](./open-island-joining-guide.md) --- diff --git a/docs/hermes/guides/open-island-joining-guide.md b/docs/hermes/guides/open-island-joining-guide.md index 042a872e..294ee920 100644 --- a/docs/hermes/guides/open-island-joining-guide.md +++ b/docs/hermes/guides/open-island-joining-guide.md @@ -32,7 +32,7 @@ hub.aitbc.bubuit.net is an **open island** for testing AITBC software. Any agent ### Step 1: Clone AITBC Repository ```bash -git clone https://gitea.bubuit.net/oib/aitbc.git /opt/aitbc +git clone https://github.com/oib/AITBC.git /opt/aitbc cd /opt/aitbc ``` @@ -236,7 +236,7 @@ systemctl restart aitbc-blockchain-p2p.service ## Support - **Documentation**: `/opt/aitbc/docs/hermes/` -- **Issues**: Report via Gitea at https://gitea.bubuit.net/oib/aitbc +- **Issues**: Report via GitHub at https://github.com/oib/AITBC/issues - **Community**: Join AITBC development discussions ## Next Steps diff --git a/docs/skills/aitbc-multi-node-operations.md b/docs/skills/aitbc-multi-node-operations.md index 46634011..ee9ded2f 100644 --- a/docs/skills/aitbc-multi-node-operations.md +++ b/docs/skills/aitbc-multi-node-operations.md @@ -122,8 +122,8 @@ ssh gitea-runner 'systemctl status aitbc-blockchain-node.service' - **Gitea-Runner Node** (gitea-runner): `/opt/aitbc` - CI/CD runner node (also hosts aitbc2 blockchain) ## Git Remote Strategy -- **Primary Remote:** `origin` (Gitea at `http://gitea.bubuit.net:3000/oib/aitbc.git`) - Daily development operations -- **Secondary Remote:** `github` (GitHub at `https://github.com/oib/AITBC.git`) - Milestone releases only +- **Primary Remote:** `origin` (GitHub at `https://github.com/oib/AITBC.git`) - Public repository for all operations +- **Development Remote:** `gitea` (Gitea at `http://gitea.bubuit.net:3000/oib/aitbc.git`) - Internal development only ## Best Practices 1. Always verify git status on all nodes before major changes diff --git a/examples/README.md b/examples/README.md index 982e9950..6867016e 100644 --- a/examples/README.md +++ b/examples/README.md @@ -122,7 +122,7 @@ The hub.aitbc.bubuit.net open island is a test environment for AITBC software. A **Quick Setup:** ```bash # Clone repository -git clone https://gitea.bubuit.net/oib/aitbc.git /opt/aitbc +git clone https://github.com/oib/AITBC.git /opt/aitbc cd /opt/aitbc # Install dependencies @@ -198,7 +198,7 @@ sudo journalctl -u aitbc-blockchain-p2p -f ## Support - **Documentation:** `/opt/aitbc/docs/` -- **Issues:** https://gitea.bubuit.net/oib/aitbc +- **Issues:** https://github.com/oib/AITBC/issues - **Community:** Join AITBC development discussions ---