One Command to Start Building
Install and configure Supabase CMS with npx create-supabase-cms init. Your CMS will be up and running in under 5 minutes.
Quick Start
npx create-supabase-cms initWhat Happens Next
? Project name: my-cms
? Supabase URL: https://xxxxx.supabase.co
? Supabase anon key: eyJ...
✓ Database configured
✓ Environment set
✓ Dependencies installed
✓ Ready! Run: npm run devHow It Works
1
Run the CLI
Execute npx create-supabase-cms init in your terminal. The CLI walks you through the setup interactively.
2
Connect Supabase
Enter your Supabase project URL and anon key. The CLI configures your database schema automatically.
3
Start building
Run npm run dev and open your CMS at localhost:3000. Your dashboard is ready immediately.
Why Use the CLI?
Zero Configuration
No manual database migrations or environment setup. The CLI handles everything from schema to env vars.
TypeScript First
Generated code is fully type-safe with Prisma ORM and TypeScript. No runtime surprises.
Open Source
The CMS and CLI are fully open source. Fork, extend, and customize everything to your needs.