Skip to main content
The Champion-tier quickstart from the OSS Cathedral M3 plan. From a fresh machine with Docker + Node 22 + pnpm installed:
1

Clone + install

2

Boot the data layer

Brings up Postgres 16 on localhost:5435, Redis 7 on localhost:6381, Inngest dev on localhost:8288.
3

Generate dev-only keys

scripts/generate-keys.sh emits dev-only random placeholders for the JWT secret, webhook secret, and four operational keys. Regenerate with KMS-backed values for production.
4

Add Privy creds (the one required vendor)

Sign up at privy.io, create a Multi-tenant tenant, copy the App ID + App Secret into apps/web/.env.local:
5

Apply migrations

6

Boot in demo mode

7

Verify

Alternative: npx create-glide-app

The scaffolder writes a minimal starter (docker-compose.yml, .env.example, README) that orchestrates the data layer + directs you to pnpm glide demo for full bring-up.

What’s mocked in demo mode

GLIDE_USE_MOCK_CONNECTORS=true swaps every connector for its sandbox variant. No real Bridge / Noah / Chainalysis / Alchemy keys required. The fail-closed audit refuses production NODE_ENV unless GLIDE_ALLOW_MOCKS_IN_PROD=true is explicitly set. For a production-shaped stack with real vendors, see Self-host guide.

Next