Skip to content
Docs · Apache-2.0

Everything you need to run Blackfyre.

Blackfyre is open source and free to self-host forever. Every guide here links straight into the repository — from a ~15-minute local stack to production on your own AWS, plus the architecture decisions and policies behind it. Nothing is behind a login.

What's documented

22

Guides

4

ADRs

2

Deploy tiers

Free

Apache-2.0

22 guidesLocal + production9 frameworks · 678 controlsSelf-host free
Get started

Clone it and have it running.

Stand up the full stack locally with no cloud account or API keys, then graduate to production on your own AWS when you're ready.

Quickstart · local stackno cloud account · no API keys
# Full local stack — no cloud account or API keys needed.
git clone https://github.com/blackfyre-security/blackfyre.git
cd blackfyre/platform
docker compose up -d postgres redis localstack
npm install && npm run build
cp packages/api/.env.example packages/api/.env   # edit per the local-dev guide
npm run db:migrate && npm run dev                # API on :4000

# Then in two more terminals:
NEXT_PUBLIC_API_URL=http://localhost:4000 npm run dev --workspace=packages/portal   # :3001
NEXT_PUBLIC_API_URL=http://localhost:4000 npm run dev --workspace=packages/admin    # :3003

# Log in at http://localhost:3001 — seeded dev user admin@acme.com / password123

Full walkthrough, troubleshooting, and reset flow → Local development guide ↗

Architecture & decisions

The shape, and why it's shaped that way.

The deployment topology plus the four architecture decision records — tenant isolation, the queue design, scanner orchestration, and AI model routing — written down and defensible.

Start

Read the code, not the marketing.

Every card on this page opens a file in the source tree. The complete, always-current docs live in the repository — versioned alongside the code they describe, never stale. Clone it, audit it, self-host it for free.

REPOSITORY
docs/developer/*6 guides
docs/adr/000{1-4}4 ADRs
docs/ARCHITECTURE.mdtopology
SECURITY · LICENSEpolicies

It all lives in /docs

Guides, ADRs, and policies sit next to the code in a public, Apache-2.0 tree — the source of truth this page mirrors.

Browse /docs