Stack starters that never rot.
Copy init code, migration schemas and connection clients that actually compile. Kept current as the packages drift.
-- Multi-tenant SaaS, PostgreSQL 17
-- identity tables emitted by Better Auth: user, session, account
create table organizations (
id uuid primary key default gen_random_uuid(),
name varchar(120) not null,
slug varchar(120) not null,
created_at timestamptz not null default now()
);
create table memberships (
id uuid primary key default gen_random_uuid(),
org_id uuid not null references organizations(id),
user_id uuid not null references "user"(id),
role varchar(120) not null
);Every schema, compiled on your stack.
800 of 800 verified greenChoose a framework, database and auth provider, then a schema. Each tab is the real init, migration and connection client compiled and tested for that exact stack.
CRM
Next.js 16 (App Router) · Postgres (Neon) · Clerk
Browse every verified stack.
800 startersThe whole directory, grouped by app schema. Every card opens a verified starter you can read and download.
AI Wrapper
40Blog / CMS
40Booking / scheduling
40CRM
40E-commerce store
40Fintech ledger
40Fitness tracker
40Forum / community
40Helpdesk / support
40IoT telemetry
40Job board
40LMS (learning platform)
40Marketplace
40Newsletter platform
40Notes / knowledge base
40Product analytics
40Project management
40SaaS
40Social network
40Video platform
40The machine keeps them current.
Every combination recompiles in CI when an upstream package ships. If a starter breaks, it never reaches the registry. How we verify →
Init code
The exact commands to stand up your framework, wired to your database and auth provider.
Migration schema
Normalized tables written in your dialect, with the relations and indexes already in place.
Connection client
Pooling, environment variables and typed access, tested against the live driver.