Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: rename ATgora to Barazo

Rename brand from ATgora to Barazo in README, license, security
policy, and CLA workflow.

Part of org-wide rename. See brand/naming-decision-barazo.md for rationale.

+28 -28
+1 -1
.github/SECURITY.md
··· 18 18 3. Click "Report a vulnerability" 19 19 4. Fill in the details 20 20 21 - Or email: security@atgora.forum (TBD - will be set up in Phase 2) 21 + Or email: security@barazo.forum (TBD - will be set up in Phase 2) 22 22 23 23 We will respond within 72 hours with next steps. 24 24
+2 -2
.github/workflows/cla.yml
··· 23 23 PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_BOT_TOKEN }} 24 24 with: 25 25 path-to-signatures: 'signatures/cla.json' 26 - path-to-document: 'https://github.com/atgora-forum/.github/blob/main/CLA.md' 26 + path-to-document: 'https://github.com/barazo-forum/.github/blob/main/CLA.md' 27 27 branch: 'main' 28 28 allowlist: 'gxjansen,dependabot[bot],github-actions[bot]' 29 - remote-organization-name: 'atgora-forum' 29 + remote-organization-name: 'barazo-forum' 30 30 remote-repository-name: '.github' 31 31 lock-pullrequest-aftermerge: false 32 32 use-dco-flag: false
+1 -1
LICENSE
··· 1 1 MIT License 2 2 3 - Copyright (c) 2026 atgora-forum 3 + Copyright (c) 2026 barazo-forum 4 4 5 5 Permission is hereby granted, free of charge, to any person obtaining a copy 6 6 of this software and associated documentation files (the "Software"), to deal
+24 -24
README.md
··· 1 1 <div align="center"> 2 2 3 3 <picture> 4 - <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/atgora-forum/.github/main/assets/logo-dark.svg"> 5 - <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/atgora-forum/.github/main/assets/logo-light.svg"> 6 - <img alt="ATgora Logo" src="https://raw.githubusercontent.com/atgora-forum/.github/main/assets/logo-dark.svg" width="120"> 4 + <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-dark.svg"> 5 + <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-light.svg"> 6 + <img alt="Barazo Logo" src="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-dark.svg" width="120"> 7 7 </picture> 8 8 9 - # atgora-web 9 + # barazo-web 10 10 11 - **Forum frontend for ATgora** 11 + **Forum frontend for Barazo** 12 12 13 13 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 14 14 [![Next.js](https://img.shields.io/badge/Next.js-16-black)](https://nextjs.org/) ··· 20 20 21 21 ## ๐Ÿšง Status: Pre-Alpha Development 22 22 23 - The default frontend for ATgora - community forums built on the AT Protocol. 23 + The default frontend for Barazo - community forums built on the AT Protocol. 24 24 25 25 **Current phase:** Planning complete, implementation starting Q1 2026 26 26 ··· 28 28 29 29 ## What is this? 30 30 31 - The atgora-web is the user-facing interface for ATgora forums. It provides: 31 + The barazo-web is the user-facing interface for Barazo forums. It provides: 32 32 33 33 - **Forum UI** - Topics, replies, categories, search, profiles 34 34 - **Authentication flow** - OAuth with AT Protocol PDS providers ··· 37 37 - **SEO-optimized** - JSON-LD, OpenGraph, sitemaps 38 38 - **Themeable** - Dark/light mode, customizable branding 39 39 40 - **API-first:** Consumes atgora-api REST endpoints. Can be fully replaced with custom frontend. 40 + **API-first:** Consumes barazo-api REST endpoints. Can be fully replaced with custom frontend. 41 41 42 42 --- 43 43 ··· 74 74 75 75 - Node.js 24 LTS 76 76 - pnpm 77 - - atgora-api running (see [atgora-api](https://github.com/atgora-forum/atgora-api)) 77 + - barazo-api running (see [barazo-api](https://github.com/barazo-forum/barazo-api)) 78 78 79 79 --- 80 80 ··· 82 82 83 83 **Clone and install:** 84 84 ```bash 85 - git clone https://github.com/atgora-forum/atgora-web.git 86 - cd atgora-web 85 + git clone https://github.com/barazo-forum/barazo-web.git 86 + cd barazo-web 87 87 pnpm install 88 88 ``` 89 89 90 90 **Configure environment:** 91 91 ```bash 92 92 cp .env.example .env.local 93 - # Set NEXT_PUBLIC_API_URL to your atgora-api instance 93 + # Set NEXT_PUBLIC_API_URL to your barazo-api instance 94 94 ``` 95 95 96 96 **Run development server:** ··· 133 133 134 134 **Production deployment via Docker:** 135 135 ```bash 136 - docker pull ghcr.io/atgora-forum/atgora-web:latest 136 + docker pull ghcr.io/barazo-forum/barazo-web:latest 137 137 ``` 138 138 139 - See [atgora-deploy](https://github.com/atgora-forum/atgora-deploy) for full deployment templates. 139 + See [barazo-deploy](https://github.com/barazo-forum/barazo-deploy) for full deployment templates. 140 140 141 141 --- 142 142 143 143 ## Customization 144 144 145 - ATgora forums can be customized: 145 + Barazo forums can be customized: 146 146 147 147 **Easy (admin panel):** 148 148 - Forum name, description, logo ··· 153 153 - Fork this repo 154 154 - Modify components, styles 155 155 - Deploy custom frontend 156 - - Still consumes atgora-api endpoints 156 + - Still consumes barazo-api endpoints 157 157 158 158 --- 159 159 160 160 ## Documentation 161 161 162 - - **User Guides:** [atgora.forum/docs](https://atgora.forum/docs) (coming soon) 162 + - **User Guides:** [barazo.forum/docs](https://barazo.forum/docs) (coming soon) 163 163 - **PRD:** [docs/prd.md](docs/prd.md) 164 164 165 165 --- ··· 174 174 175 175 ## Related Repositories 176 176 177 - - **[atgora-api](https://github.com/atgora-forum/atgora-api)** - Backend API (AGPL-3.0) 178 - - **[atgora-lexicons](https://github.com/atgora-forum/atgora-lexicons)** - AT Protocol schemas 179 - - **[atgora-deploy](https://github.com/atgora-forum/atgora-deploy)** - Deployment templates 177 + - **[barazo-api](https://github.com/barazo-forum/barazo-api)** - Backend API (AGPL-3.0) 178 + - **[barazo-lexicons](https://github.com/barazo-forum/barazo-lexicons)** - AT Protocol schemas 179 + - **[barazo-deploy](https://github.com/barazo-forum/barazo-deploy)** - Deployment templates 180 180 181 181 --- 182 182 183 183 ## Community 184 184 185 - - ๐ŸŒ **Website:** [atgora.forum](https://atgora.forum) (coming soon) 186 - - ๐Ÿ’ฌ **Discussions:** [GitHub Discussions](https://github.com/orgs/atgora-forum/discussions) 187 - - ๐Ÿ› **Issues:** [Report bugs](https://github.com/atgora-forum/atgora-web/issues) 185 + - ๐ŸŒ **Website:** [barazo.forum](https://barazo.forum) (coming soon) 186 + - ๐Ÿ’ฌ **Discussions:** [GitHub Discussions](https://github.com/orgs/barazo-forum/discussions) 187 + - ๐Ÿ› **Issues:** [Report bugs](https://github.com/barazo-forum/barazo-web/issues) 188 188 189 189 --- 190 190 191 - ยฉ 2026 ATgora. Licensed under MIT. 191 + ยฉ 2026 Barazo. Licensed under MIT.