diff --git a/docs/client-documentation.md b/docs/client-documentation.md index c62723e1..0dbb6fcc 100644 --- a/docs/client-documentation.md +++ b/docs/client-documentation.md @@ -48,7 +48,7 @@ Use the bash CLI wrapper for easy job submission: ### Web Interface (Fastest) 1. **Visit the Marketplace** - - Go to [aitbc.bubuit.net/marketplace](https://gitea.bubuit.net/oib/aitbc) + - Go to [aitbc.bubuit.net/marketplace](https://aitbc.bubuit.net/marketplace) 2. **Connect Your Wallet** - Connect MetaMask or create a new AITBC wallet diff --git a/docs/developer-documentation.md b/docs/developer-documentation.md index f3e86895..f9d35e1a 100644 --- a/docs/developer-documentation.md +++ b/docs/developer-documentation.md @@ -16,7 +16,7 @@ Build on the AITBC platform: SDKs, APIs, bounties, and resources for developers. ```bash # Clone the repository -git clone https://gitea.bubuit.net/oib/aitbc.git +git clone https://github.com/oib/AITBC.git cd aitbc # Start all services @@ -40,7 +40,7 @@ The AITBC platform consists of: ### How to Contribute -1. Fork the repository on Gitea +1. Fork the repository on GitHub 2. Create a feature branch: `git checkout -b feature/amazing-feature` 3. Make your changes 4. Add tests for new functionality @@ -64,7 +64,7 @@ The AITBC platform consists of: ## Bounty Program -Get paid to contribute to AITBC! Check open bounties on Gitea. +Get paid to contribute to AITBC! Check open bounties on GitHub. ### Current Bounties @@ -82,7 +82,7 @@ Get paid to contribute to AITBC! Check open bounties on Gitea. ### How to Apply -1. Check open issues on Gitea +1. Check open issues on GitHub 2. Comment on the issue you want to work on 3. Submit your solution 4. Get reviewed by core team @@ -256,4 +256,4 @@ def test_create_feature_invalid(): - **Documentation**: [https://docs.aitbc.bubuit.net](https://docs.aitbc.bubuit.net) - **Discord**: [Join our server](https://discord.gg/aitbc) - **Email**: [aitbc@bubuit.net](mailto:aitbc@bubuit.net) -- **Issues**: [Report on Gitea](https://gitea.bubuit.net/oib/aitbc/issues) +- **Issues**: [Report on GitHub](https://github.com/oib/AITBC/issues) diff --git a/docs/done.md b/docs/done.md index 73e7c2f4..58b461f9 100644 --- a/docs/done.md +++ b/docs/done.md @@ -144,6 +144,20 @@ This document tracks components that have been successfully deployed and are ope - Configure additional monitoring and observability - Set up automated backup procedures +## Recent Updates (2026-02-11) + +### Git & Repository Hygiene +- ✅ **Branch Cleanup** - Purged all `master` branches from GitHub + - Renamed local `master` branch to `main` + - Set tracking to `github/main` + - Deleted remote `master` branch from GitHub + - Set `git config --global init.defaultBranch main` to prevent future `master` branches +- ✅ **Remote Cleanup** - Removed stale `origin` remote (Gitea) + - Only `github` remote remains (https://github.com/oib/AITBC.git) +- ✅ **Legacy Cleanup** - Removed `.github/` directory + - Contained only a legacy RFC pull request template (unused) + - No active CI workflows or GitHub Actions + ## Recent Updates (2026-01-29) ### Cross-Site Synchronization Implementation diff --git a/docs/full-documentation.md b/docs/full-documentation.md index 9325bd33..b279ac4a 100644 --- a/docs/full-documentation.md +++ b/docs/full-documentation.md @@ -87,7 +87,7 @@ AITBC uses a hybrid Proof-of-Authority/Proof-of-Stake consensus: ```bash # Clone repository -git clone https://gitea.bubuit.net/oib/aitbc.git +git clone https://github.com/oib/AITBC.git cd aitbc # Start all services @@ -250,7 +250,7 @@ Features: 2. **Install Miner** ```bash - wget https://gitea.bubuit.net/oib/aitbc/releases/download/latest/aitbc-miner + wget https://github.com/oib/AITBC/releases/download/latest/aitbc-miner chmod +x aitbc-miner ./aitbc-miner init ``` @@ -272,7 +272,7 @@ Features: 1. **Setup Development** ```bash - git clone https://gitea.bubuit.net/oib/aitbc.git + git clone https://github.com/oib/AITBC.git cd aitbc docker-compose -f docker-compose.dev.yml up ``` @@ -385,7 +385,7 @@ The platform has been audited by: - **Documentation**: https://docs.aitbc.bubuit.net - **Discord**: https://discord.gg/aitbc - **Email**: aitbc@bubuit.net -- **Issues**: https://gitea.bubuit.net/oib/aitbc/issues +- **Issues**: https://github.com/oib/AITBC/issues ## License diff --git a/docs/marketplace-web.md b/docs/marketplace-web.md index 64686521..7f6cbd96 100644 --- a/docs/marketplace-web.md +++ b/docs/marketplace-web.md @@ -38,7 +38,7 @@ The Marketplace Web is the primary interface for clients to submit AI compute jo ```bash # Clone the repository -git clone https://gitea.bubuit.net/oib/aitbc.git +git clone https://github.com/oib/AITBC.git cd aitbc/apps/marketplace-web # Install dependencies @@ -407,4 +407,4 @@ if (import.meta.env.DEV) { - Documentation: [docs.aitbc.bubuit.net](https://docs.aitbc.bubuit.net) - Discord: [discord.gg/aitbc](https://discord.gg/aitbc) -- Issues: [Gitea Issues](https://gitea.bubuit.net/oib/aitbc/issues) +- Issues: [GitHub Issues](https://github.com/oib/AITBC/issues) diff --git a/docs/miner-documentation.md b/docs/miner-documentation.md index bf67e3e5..a82f6dc7 100644 --- a/docs/miner-documentation.md +++ b/docs/miner-documentation.md @@ -24,7 +24,7 @@ Miners are essential to the AITBC network, providing both security through staki ```bash # Download miner binary -wget https://gitea.bubuit.net/oib/aitbc/releases/download/latest/aitbc-miner-linux-amd64.tar.gz +wget https://github.com/oib/AITBC/releases/download/latest/aitbc-miner-linux-amd64.tar.gz tar -xzf aitbc-miner-linux-amd64.tar.gz # Initialize miner @@ -105,7 +105,7 @@ sudo apt update sudo apt install -y curl wget gnupg2 # Download miner -wget https://gitea.bubuit.net/oib/aitbc/releases/download/latest/aitbc-miner-linux-amd64.tar.gz +wget https://github.com/oib/AITBC/releases/download/latest/aitbc-miner-linux-amd64.tar.gz tar -xzf aitbc-miner-linux-amd64.tar.gz sudo mv aitbc-miner /usr/local/bin/ @@ -302,7 +302,7 @@ Authority nodes require invitation based on community contribution, technical ex - Check the logs: `./aitbc-miner logs` - Visit our Discord community -- Search issues on Gitea +- Search issues on GitHub - Email support: aitbc@bubuit.net ## Additional Resources diff --git a/docs/operator/deployment/simple-domain-solution.md b/docs/operator/deployment/simple-domain-solution.md index d86c3e0f..9f150c54 100644 --- a/docs/operator/deployment/simple-domain-solution.md +++ b/docs/operator/deployment/simple-domain-solution.md @@ -24,7 +24,7 @@ Copy the AITBC project to your server and run there: ```bash # On server: -git clone https://gitea.bubuit.net/oib/aitbc.git +git clone https://github.com/oib/AITBC.git cd aitbc ./run-local-services.sh ``` diff --git a/docs/roadmap.md b/docs/roadmap.md index fe8c06e8..84d132be 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -731,6 +731,16 @@ Current Status: Canonical receipt schema specification moved from `protocols/rec | `docs/reference/specs/receipt-spec.md` finalize | Low | Q2 2026 | 🔄 Pending extensions | | Cross-site synchronization | High | Q1 2026 | ✅ Complete (2026-01-29) | +## Recent Progress (2026-02-11) + +### Git & Repository Hygiene ✅ COMPLETE +- Renamed local `master` branch to `main` and set tracking to `github/main` +- Deleted remote `master` branch from GitHub (was recreated on each push) +- Removed stale `origin` remote (Gitea — repo not found) +- Set `git config --global init.defaultBranch main` +- Removed `.github/` directory (legacy RFC PR template, no active workflows) +- Single remote: `github` → `https://github.com/oib/AITBC.git`, branch: `main` + ## Recent Progress (2026-01-29) ### Testing Infrastructure diff --git a/website/docs-clients.html b/website/docs-clients.html index 2844406f..1a01d7de 100644 --- a/website/docs-clients.html +++ b/website/docs-clients.html @@ -455,7 +455,7 @@
1

Visit the Marketplace

-

Go to aitbc.bubuit.net/marketplace

+

Go to aitbc.bubuit.net/marketplace

diff --git a/website/docs-developers.html b/website/docs-developers.html index 93b2000a..f28d34ff 100644 --- a/website/docs-developers.html +++ b/website/docs-developers.html @@ -428,12 +428,12 @@

Fork & Clone

-# Fork the repository on Gitea -git clone https://gitea.bubuit.net/YOUR_USERNAME/aitbc.git +# Fork the repository on GitHub +git clone https://github.com/YOUR_USERNAME/AITBC.git cd aitbc # Add upstream remote -git remote add upstream https://gitea.bubuit.net/oib/aitbc.git +git remote add upstream https://github.com/oib/AITBC.git
diff --git a/website/docs-index.html b/website/docs-index.html index 91c2f4f1..17f9278f 100644 --- a/website/docs-index.html +++ b/website/docs-index.html @@ -513,7 +513,7 @@ Browser Wallet - + Source Code diff --git a/website/docs-miners.html b/website/docs-miners.html index 878f1f81..d1193b06 100644 --- a/website/docs-miners.html +++ b/website/docs-miners.html @@ -372,7 +372,7 @@
  • Miners
  • Clients
  • Developers
  • -
  • GitHub
  • +
  • GitHub
  • diff --git a/website/docs/blockchain-node.html b/website/docs/blockchain-node.html index 60a7e2c3..589abbe8 100644 --- a/website/docs/blockchain-node.html +++ b/website/docs/blockchain-node.html @@ -417,7 +417,7 @@ LOG_LEVEL=info

    Installation

    # Clone repository
    -git clone https://gitea.bubuit.net/oib/aitbc.git
    +git clone https://github.com/oib/AITBC.git
     cd aitbc/apps/blockchain-node
     
     # Install dependencies
    diff --git a/website/docs/client-documentation-md.html b/website/docs/client-documentation-md.html
    index c0daa6d5..d9984c18 100644
    --- a/website/docs/client-documentation-md.html
    +++ b/website/docs/client-documentation-md.html
    @@ -323,7 +323,7 @@
                     
                     

    CLI Wrapper Tool (Recommended)

    # Install the CLI wrapper
    -curl -O https://gitea.bubuit.net/oib/aitbc/releases/download/latest/aitbc-cli.sh
    +curl -O https://github.com/oib/AITBC/releases/download/latest/aitbc-cli.sh
     chmod +x aitbc-cli.sh
     
     # Check available services
    diff --git a/website/docs/developer-documentation-md.html b/website/docs/developer-documentation-md.html
    index 94549df7..0d566b09 100644
    --- a/website/docs/developer-documentation-md.html
    +++ b/website/docs/developer-documentation-md.html
    @@ -372,7 +372,7 @@
                     
                     
                     
    # Fork & Clone
    -git clone https://gitea.bubuit.net/YOUR_USERNAME/aitbc.git
    +git clone https://github.com/YOUR_USERNAME/AITBC.git
     cd aitbc
     
     # Set up Python environment
    diff --git a/website/docs/docs-clients.html b/website/docs/docs-clients.html
    index 5ba881f0..cf247ec7 100644
    --- a/website/docs/docs-clients.html
    +++ b/website/docs/docs-clients.html
    @@ -113,7 +113,7 @@
                         
    1

    Visit the Marketplace

    -

    Go to aitbc.bubuit.net/marketplace

    +

    Go to aitbc.bubuit.net/marketplace

    diff --git a/website/docs/docs-developers.html b/website/docs/docs-developers.html index d5aad869..63b4c0b6 100644 --- a/website/docs/docs-developers.html +++ b/website/docs/docs-developers.html @@ -105,12 +105,12 @@

    Fork & Clone

    -# Fork the repository on Gitea -git clone https://gitea.bubuit.net/YOUR_USERNAME/aitbc.git +# Fork the repository on GitHub +git clone https://github.com/YOUR_USERNAME/AITBC.git cd aitbc # Add upstream remote -git remote add upstream https://gitea.bubuit.net/oib/aitbc.git
    +git remote add upstream https://github.com/oib/AITBC.git
    diff --git a/website/docs/docs-miners.html b/website/docs/docs-miners.html index e82a9439..28f2b83d 100644 --- a/website/docs/docs-miners.html +++ b/website/docs/docs-miners.html @@ -86,12 +86,12 @@

    Get the AITBC mining software for your platform

    # Linux/macOS -curl -O https://gitea.bubuit.net/oib/aitbc/releases/download/v1.0.0/aitbc-miner-v1.0.0.tar.gz +curl -O https://github.com/oib/AITBC/releases/download/v1.0.0/aitbc-miner-v1.0.0.tar.gz tar -xzf aitbc-miner-v1.0.0.tar.gz cd aitbc-miner # Windows -# Download from https://gitea.bubuit.net/oib/aitbc/releases
    +# Download from https://github.com/oib/AITBC/releases diff --git a/website/docs/full-documentation-md.html b/website/docs/full-documentation-md.html index 1a8cec90..b5d0cf2d 100644 --- a/website/docs/full-documentation-md.html +++ b/website/docs/full-documentation-md.html @@ -392,7 +392,7 @@

    Quick Start with Docker

    # Clone the repository
    -git clone https://gitea.bubuit.net/oib/aitbc.git
    +git clone https://github.com/oib/AITBC.git
     cd aitbc
     
     # Start all services
    diff --git a/website/docs/full-documentation.html b/website/docs/full-documentation.html
    index 5281dac0..ce37260d 100644
    --- a/website/docs/full-documentation.html
    +++ b/website/docs/full-documentation.html
    @@ -698,7 +698,7 @@
                             

    Quick Start

    Option 1: Docker Compose (Recommended)

    # Clone the repository
    -git clone https://gitea.bubuit.net/aitbc/aitbc.git
    +git clone https://github.com/oib/AITBC.git
     cd aitbc
     
     # Copy environment configuration
    @@ -1067,7 +1067,7 @@ gosec ./...
    diff --git a/website/docs/index.html b/website/docs/index.html index a2010cf9..154f597a 100644 --- a/website/docs/index.html +++ b/website/docs/index.html @@ -160,7 +160,7 @@ Full Documentation - + Markdown Docs @@ -168,7 +168,7 @@ Trade Exchange - + Source Code diff --git a/website/docs/marketplace-web.html b/website/docs/marketplace-web.html index 5e6e30f7..34f464f3 100644 --- a/website/docs/marketplace-web.html +++ b/website/docs/marketplace-web.html @@ -273,7 +273,7 @@
    - Documentation Format: View this documentation in markdown format for easier contribution and version control. + Documentation Format: View this documentation in markdown format for easier contribution and version control.
    @@ -339,7 +339,7 @@

    Installation

    # Clone the repository
    -git clone https://gitea.bubuit.net/oib/aitbc.git
    +git clone https://github.com/oib/AITBC.git
     cd aitbc/apps/marketplace-web
     
     # Install dependencies
    diff --git a/website/docs/miner-documentation-md.html b/website/docs/miner-documentation-md.html
    index 6626e437..0c7cc0db 100644
    --- a/website/docs/miner-documentation-md.html
    +++ b/website/docs/miner-documentation-md.html
    @@ -394,12 +394,12 @@
                     

    1. Download & Install

    Get the AITBC mining software for your platform

    # Linux/macOS
    -curl -O https://gitea.bubuit.net/oib/aitbc/releases/download/latest/aitbc-miner-linux-amd64.tar.gz
    +curl -O https://github.com/oib/AITBC/releases/download/latest/aitbc-miner-linux-amd64.tar.gz
     tar -xzf aitbc-miner-linux-amd64.tar.gz
     cd aitbc-miner
     
     # Windows
    -# Download from https://gitea.bubuit.net/oib/aitbc/releases
    +# Download from https://github.com/oib/AITBC/releases

    2. Configure Your Node

    Set up your mining configuration

    diff --git a/website/documentation.html b/website/documentation.html index b78253ff..75b00db1 100644 --- a/website/documentation.html +++ b/website/documentation.html @@ -473,7 +473,7 @@ docker-compose up -d

    Contributing

    -

    We welcome contributions! Please see our contributing guide for details.

    +

    We welcome contributions! Please see our contributing guide for details.

    diff --git a/website/full-documentation.html b/website/full-documentation.html index 006e063b..65f94547 100644 --- a/website/full-documentation.html +++ b/website/full-documentation.html @@ -623,7 +623,7 @@

    Quick Start

    Option 1: Docker Compose (Recommended)

    # Clone the repository
    -git clone https://gitea.bubuit.net/aitbc/aitbc.git
    +git clone https://github.com/oib/AITBC.git
     cd aitbc
     
     # Copy environment configuration
    @@ -992,7 +992,7 @@ gosec ./...