···11blank_issues_enabled: true
22contact_links:
33 - name: File issue in barazo-workspace
44- url: https://github.com/barazo-forum/barazo-workspace/issues/new/choose
44+ url: https://github.com/singi-labs/barazo-workspace/issues/new/choose
55 about: We track all issues centrally in barazo-workspace. Please file there for cross-repo features, general feedback, or if unsure where an issue belongs.
+2-2
.github/workflows/build-smoke-test.yml
···4848 - name: Check container image availability
4949 id: check-images
5050 run: |
5151- API_IMAGE="ghcr.io/barazo-forum/barazo-api:${BARAZO_API_VERSION}"
5252- WEB_IMAGE="ghcr.io/barazo-forum/barazo-web:${BARAZO_WEB_VERSION}"
5151+ API_IMAGE="ghcr.io/singi-labs/barazo-api:${BARAZO_API_VERSION}"
5252+ WEB_IMAGE="ghcr.io/singi-labs/barazo-web:${BARAZO_WEB_VERSION}"
53535454 MISSING=false
5555 for IMAGE in "$API_IMAGE" "$WEB_IMAGE"; do
···11# Barazo Deploy -- Self-Hosting Templates
2233<!-- Auto-generated from barazo-workspace. To propose changes, edit the source:
44- https://github.com/barazo-forum/barazo-workspace/tree/main/agents-md -->
44+ https://github.com/singi-labs/barazo-workspace/tree/main/agents-md -->
5566-MIT | Part of [github.com/barazo-forum](https://github.com/barazo-forum)
66+MIT | Part of [github.com/singi-labs](https://github.com/singi-labs)
7788Docker Compose templates and documentation for self-hosting a Barazo forum instance.
99···39394040Open-source forum software built on the [AT Protocol](https://atproto.com/). Portable identity, member-owned data, no lock-in.
41414242-- **Organization:** [github.com/barazo-forum](https://github.com/barazo-forum)
4242+- **Organization:** [github.com/singi-labs](https://github.com/singi-labs)
4343- **License:** AGPL-3.0 (backend) / MIT (frontend, lexicons, deploy) / CC BY-SA 4.0 + MIT (docs) / Proprietary (website)
4444-- **Contributing:** See [CONTRIBUTING.md](https://github.com/barazo-forum/.github/blob/main/CONTRIBUTING.md)
4444+- **Contributing:** See [CONTRIBUTING.md](https://github.com/singi-labs/.github/blob/main/CONTRIBUTING.md)
45454646### Coding Standards
4747
+1-1
LICENSE
···11MIT License
2233-Copyright (c) 2026 barazo-forum
33+Copyright (c) 2026 singi-labs
4455Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
+15-15
README.md
···11<div align="center">
2233<picture>
44- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-dark.svg">
55- <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-light.svg">
66- <img alt="Barazo Logo" src="https://raw.githubusercontent.com/barazo-forum/.github/main/assets/logo-dark.svg" width="120">
44+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/singi-labs/.github/main/assets/logo-dark.svg">
55+ <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/singi-labs/.github/main/assets/logo-light.svg">
66+ <img alt="Barazo Logo" src="https://raw.githubusercontent.com/singi-labs/.github/main/assets/logo-dark.svg" width="120">
77</picture>
8899# Barazo Deploy
···12121313[]()
1414[](https://opensource.org/licenses/MIT)
1515-[](https://github.com/barazo-forum/barazo-deploy/actions/workflows/validate-compose.yml)
1515+[](https://github.com/singi-labs/barazo-deploy/actions/workflows/validate-compose.yml)
16161717</div>
1818···20202121## Overview
22222323-Everything you need to self-host a [Barazo](https://github.com/barazo-forum) forum. Includes Docker Compose templates for development, production (single community), and global aggregator deployments. Automatic SSL via Caddy, backup/restore scripts, and network segmentation out of the box.
2323+Everything you need to self-host a [Barazo](https://github.com/singi-labs) forum. Includes Docker Compose templates for development, production (single community), and global aggregator deployments. Automatic SSL via Caddy, backup/restore scripts, and network segmentation out of the box.
24242525---
2626···4141| PostgreSQL 16 | `pgvector/pgvector:pg16` | Primary database with pgvector for full-text and optional semantic search |
4242| Valkey 8 | `valkey/valkey:8-alpine` | Redis-compatible cache for sessions, rate limiting, and queues |
4343| Tap | `ghcr.io/bluesky-social/indigo/tap:latest` | AT Protocol firehose consumer, filters `forum.barazo.*` records |
4444-| Barazo API | `ghcr.io/barazo-forum/barazo-api` | AppView backend (Fastify, REST API, firehose indexing) |
4545-| Barazo Web | `ghcr.io/barazo-forum/barazo-web` | Next.js frontend |
4444+| Barazo API | `ghcr.io/singi-labs/barazo-api` | AppView backend (Fastify, REST API, firehose indexing) |
4545+| Barazo Web | `ghcr.io/singi-labs/barazo-web` | Next.js frontend |
4646| Caddy | `caddy:2-alpine` | Reverse proxy with automatic SSL via Let's Encrypt, HTTP/3 support |
47474848Production uses two-network segmentation: PostgreSQL and Valkey sit on the `backend` network only and are unreachable from Caddy or the frontend. Only ports 80 and 443 are exposed externally.
···51515252## Image Tags
53535454-Barazo API and Web images are published to [GitHub Container Registry](https://github.com/orgs/barazo-forum/packages) (`ghcr.io/barazo-forum/*`).
5454+Barazo API and Web images are published to [GitHub Container Registry](https://github.com/orgs/singi-labs/packages) (`ghcr.io/singi-labs/*`).
55555656| Tag | Meaning | When to use |
5757|-----|---------|-------------|
···150150## Quick Start
151151152152```bash
153153-git clone https://github.com/barazo-forum/barazo-deploy.git
153153+git clone https://github.com/singi-labs/barazo-deploy.git
154154cd barazo-deploy
155155156156# Configure
···183183184184| Repository | Description | License |
185185|------------|-------------|---------|
186186-| [barazo-api](https://github.com/barazo-forum/barazo-api) | AppView backend (Fastify, firehose, REST API) | AGPL-3.0 |
187187-| [barazo-web](https://github.com/barazo-forum/barazo-web) | Forum frontend (Next.js, Tailwind) | MIT |
188188-| [barazo-lexicons](https://github.com/barazo-forum/barazo-lexicons) | AT Protocol lexicon schemas + generated types | MIT |
189189-| [barazo-website](https://github.com/barazo-forum/barazo-website) | Marketing + documentation site | MIT |
186186+| [barazo-api](https://github.com/singi-labs/barazo-api) | AppView backend (Fastify, firehose, REST API) | AGPL-3.0 |
187187+| [barazo-web](https://github.com/singi-labs/barazo-web) | Forum frontend (Next.js, Tailwind) | MIT |
188188+| [barazo-lexicons](https://github.com/singi-labs/barazo-lexicons) | AT Protocol lexicon schemas + generated types | MIT |
189189+| [barazo-website](https://github.com/singi-labs/barazo-website) | Marketing + documentation site | MIT |
190190191191---
192192193193## Community
194194195195- **Website:** [barazo.forum](https://barazo.forum)
196196-- **Discussions:** [GitHub Discussions](https://github.com/orgs/barazo-forum/discussions)
197197-- **Issues:** [Report bugs](https://github.com/barazo-forum/barazo-deploy/issues)
196196+- **Discussions:** [GitHub Discussions](https://github.com/orgs/singi-labs/discussions)
197197+- **Issues:** [Report bugs](https://github.com/singi-labs/barazo-deploy/issues)
198198199199---
200200