docs: update gitea.bubuit.net references to GitHub
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled

- Updated all public documentation to use GitHub as primary repository
- Changed clone URLs from gitea.bubuit.net to github.com/oib/AITBC
- Updated issue tracking links to GitHub issues
- Updated git remote strategy documentation to reflect GitHub as primary
- Gitea remains for internal development only
This commit is contained in:
aitbc
2026-05-26 09:25:36 +02:00
parent be09e83640
commit 6895c86589
7 changed files with 12 additions and 12 deletions

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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

View File

@@ -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)
---

View File

@@ -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

View File

@@ -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

View File

@@ -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
---