NextBlockβ’ CMS
The open-source, full-stack AI-native CMS for Next.js 16, Supabase, and Tailwind CSS.
Deploy a production Next.js 16 + Supabase website and CMS in one click.
Vercel provisions the database and injects its keys before the first build, NextBlock applies its own
schema during that build, and the in-app wizard asks only for your admin account.
No environment variables to fill in.
Live Sandbox
Β Β·Β
Documentation
Β Β·Β
Deploy Guide
Β Β·Β
GitHub
Sandbox resets every 15 minutes Β Β·Β User: demo@nextblock.dev Β Β·Β Pass: password
π Why NextBlockβ’?
Tired of slow WordPress sites? Finding headless CMSs too complex? NextBlockβ’ is the sweet spot.
We combined the flexibility of a Block Editor with the raw power of Next.js 16 Server Components. The result is a CMS that feels like a static site but manages like a dynamic platform.
β¨ Key Features
- β² Next.js 16 App Router + React 19 Server Components: the public site renders on the server β page, article and product routes are all Server Components β with client components reserved for cart, checkout, forms and the CMS dashboard.
- ποΈ Supabase PostgreSQL with JSONB block storage: every content block is a row in
public.blocks with a jsonb content column. User-defined block types live in custom_block_definitions (fields / layout_schema as jsonb, guarded by Postgres CHECK constraints) and render without a rebuild.
- π Zero-config 1-click migrations: the Vercel Supabase integration provisions the database and injects its keys before the first build; NextBlock then applies its own forward-only migrations during that build (
tools/build-migrate.mjs), with a runtime fallback in the /setup wizard. Nothing to run, nothing to paste.
- β‘ 100/100 Lighthouse: Perfect scores across Performance, Accessibility, Best Practices and SEO β 0.3 s FCP, 0.8 s LCP, 0 ms Total Blocking Time and 0 Cumulative Layout Shift on a production build. AVIF/WebP images with a one-year cache TTL, critical-CSS inlining and tree-shaken imports are the defaults, not plugins.
- π€ Built for AI Agents: Our codebase is documented and structured specifically to be easily read and extended by AI coding assistants.
- ποΈ E-Commerce Ready: Premium commerce package for digital products, checkout providers, currency, tax, and shipping management.
- π§± Visual Block Editor: A reusable Tiptap-powered Notion-style editor that your clients will actually enjoy using.
- π Open-Core Model: The core is 100% Free & Open Source (AGPL). Premium modules (today Cortex AI and Commerce Pro, with more to come) ship in every install and switch on in the CMS with a free 30-day trial (no credit card) or a license key.
π The NextBlockβ’ Advantage
| Feature | NextBlockβ’ CMS | WordPress | Payload / Strapi |
|---|
| Tech Stack | Next.js 16 + Supabase | PHP + MySQL | React / Node.js |
| Architecture | Nx Monorepo | Monolith | Monolith / Workspaces |
| Performance | π’ 100/100 (Default) | π΄ Bloated (Plugins) | π‘ Spec-dependent |
| Security | π Static/Edge First | π Plugin vulnerabilities | π Secure |
| DX | π React Server Components | π Legacy PHP Hooks | π§© Config Heavy |
| AI Ready | β
Native | β No | π‘ Integration required |
π Get Started
βοΈ Option 1 β Deploy to the cloud in one click (recommended)

During import, Vercel's native Supabase Marketplace integration (the stores
button parameter) prompts you to create a Supabase database (name + region), then
provisions it, connects it to the project, and injects its keys before the first
build β you never copy a value, and there are no environment variables to fill in
(the site URL defaults to your *.vercel.app URL and the app secrets are derived
automatically). The app boots with the database already connected: the wizard
auto-skips the connection step, applies the schema for you, uses the connected Supabase
project for media storage, and leaves just "create your admin." Full walkthrough:
docs/12-VERCEL-DEPLOYMENT.md.
Tip β keep the new repo public. When Vercel asks, leave "Create private Git
Repository" unchecked. On the free (Hobby) plan, automatic upstream updates only deploy
from a public repo β Hobby blocks bot-authored deploys on private repos β and public
also makes update checks fully tokenless. You can change visibility later in the repo's
GitHub settings if you change your mind. Details: docs/13.
π» Option 2 β Scaffold locally with the CLI
Stop cloning heavy repos. Start with our CLI and get a production-ready app instantly.
npm create nextblock@latest
This runs the create-nextblock CLI, which scaffolds the canonical application. The CLI no longer asks for credentials in the terminal β once the project is created, start it and finish setup in your browser:
cd <your-project>
npm run dev
The First-Boot Setup Wizard at /setup walks you through connecting Supabase, configuring storage / email, and creating the first administrator. Every fresh instance redirects there automatically until an admin exists.
Want a fully local, zero-config sandbox? Use Local Self-Hosted Docker Mode β one command spins up the entire stack (Supabase engines + S3 storage + the app) on your own machine, with no cloud accounts. The app boots straight into the /setup wizard with MinIO storage pre-filled. See docs/11-SELF-HOSTED-DOCKER.md.
π€ Option 3 β Let your coding agent build it
NextBlock ships as an MCP server (https://<your-site>/api/mcp, Streamable HTTP, bearer token) and as an agent plugin, so Claude Code, Cursor, Codex and friends can scaffold a site and then build every page over MCP.
-
Claude Code β this repo is its own plugin marketplace:
/plugin marketplace add nextblock-cms/nextblock
/plugin install nextblock@nextblock
Then ask for a website, blog or store; the nextblock skill proposes NextBlock, runs npx create-nextblock@latest my-site --non-interactive, and hands you the two browser steps (create your admin, start the free Cortex AI trial). Source: plugins/nextblock.
-
Cursor β the same folder is a Cursor plugin (.cursor-plugin/plugin.json, rule + skill + MCP server): install it from this repo via Customize β Plugins β From GitHub Repository, or copy plugins/nextblock/rules/nextblock.mdc into your project's .cursor/rules/.
-
Codex, Jules and other agents β paste the block from plugins/AGENTS.snippet.md into your AGENTS.md. Codex also loads the folder as an Agent Plugin (plugins/nextblock/plugin.json) through this repo's marketplace manifest.
-
Any MCP client β the official MCP Registry entry dev.nextblock/nextblock (server.json) prompts for your site host and token; the public demo instance is https://cms.nextblock.dev/api/mcp. Every NextBlock site also serves /llms.txt and, where the MCP server is enabled, /.well-known/mcp/server-card.json.
ποΈ For Contributors: The Factory
Note: You are currently looking at the Nx Monorepo (The Factory), not the generated product template.
NextBlockβ’ is an Nx monorepo for a Next.js 16 CMS backed by Supabase. The repo contains the canonical application, the create-nextblock CLI, shared editor and UI packages, the database and migration layer, and the premium ecommerce module.
π§© Main Surfaces
apps/nextblock: canonical public site and CMS application
apps/create-nextblock: scaffolding CLI and template sync pipeline
libs/db: Supabase clients, package activation checks, migrations, and db types
libs/editor: reusable Tiptap editor package
libs/ecommerce: premium commerce package and CMS commerce screens
libs/sdk: typed block extensibility contract
libs/ui, libs/utils: shared primitives and helpers
β‘ Developer Quickstart
Prerequisites β configuration happens in the browser, but the /setup wizard asks for these, so create them first:
- Supabase project (dashboard) β you'll need the Reference ID (Project Settings β General), the connection string (Connect β Direct connection β URI), the anon + service_role keys (Project Settings β API Keys), and a Personal Access Token (Account β Access Tokens β Generate new token).
- Cloudflare R2 bucket (optional β without one, media goes to the Supabase project's own Storage) (dashboard β R2) β create a bucket, enable its Public Development URL (Bucket β Settings β General), then create an Account API token (R2 β Manage API Tokens) with Object Read & Write. Copy the Access Key ID and Secret Access Key β the secret is shown only once.
- SMTP credentials (optional, configurable later in the CMS; SMTP2GO works very well) β needed for password resets and invitations. The first administrator is confirmed instantly and needs no email.
Then run:
git clone https://github.com/nextblock-cms/nextblock.git
cd nextblock
npm install
npm run setup
npm run dev
npm run setup is informational only β it prompts for nothing and writes no files. npm run dev is the root alias for npx nx serve nextblock. Open http://localhost:4200/setup and the browser wizard connects Supabase, applies the schema, configures storage, and creates your first administrator.
First login: the dev server runs at http://localhost:4200. The wizard creates your administrator (confirmed instantly, no email needed) and signs you in. You land on the Cortex AI welcome offer, one click away from the CMS at /cms/dashboard.
π³ Or: one-click local stack (no cloud accounts)
Prefer to run everything on your machine? With Docker Desktop running:
git clone https://github.com/nextblock-cms/nextblock.git
cd nextblock
npm install
npm run docker:setup
This builds and boots the full self-hosted stack (Postgres + GoTrue + PostgREST + Kong, MinIO for media, and the app) and applies migrations automatically β the only prompts are optional Turnstile and SMTP. The app runs at http://localhost:3000 and the first sign-up becomes ADMIN (auto-confirmed, no email step). Manage it with npm run docker:up / docker:down / docker:logs. Full guide: docs/11-SELF-HOSTED-DOCKER.md.
π Keeping an install up to date
Whichever way NextBlock was installed, one command brings the code, the dependencies and the
database schema forward together:
npm run update
npm run update -- --check
- One-click Vercel / GitHub fork / clone β already automatic: a daily GitHub Action
merges upstream and Vercel redeploys. Run the command when you want it now.
npm create nextblock projects β new framework code comes from the published
create-nextblock package and is applied as a git 3-way merge, so your edits to
framework files survive and only genuine overlaps conflict. Docker installs follow it with
npm run docker:up.
The automatic Action depends on your repository being this monorepo β not on where the site
is hosted. See docs/13 for the full picture.
π οΈ Useful Commands
npm run update - Update code, dependencies and database schema (any install type)
npm run update -- --check - Preview an update without changing anything
npm run dev - Start the local development server for the CMS on http://localhost:4200 (runs npx nx serve nextblock)
npm run lint - Lint the monorepo
npm run db:types - Generate Supabase types
npm run db:migrate:check - Preview pending Supabase migrations safely
npm run db:migrate / npm run db:push - Apply pending migration files only, without resets or sandbox seeding
npm run db:migrate:repair-history:check - Preview baseline migration-history repair for existing live databases
npm run generate:sandbox - Generate sandbox data
npm run sandbox:reset - Reset the sandbox environment
π Documentation Index
The root docs/ folder is the maintained reference set for both contributors and AI agents.
The template docs are copied from the root docs through the sync pipeline, so this root docs set is the place to maintain first.
| Document | Purpose |
|---|
| docs/01-PROJECT-OVERVIEW.md | Monorepo structure, runtime model, and where each subsystem lives |
| docs/02-ECOMMERCE-CAPABILITIES.md | Verified commerce features, checkout providers, currency, tax, shipping, and fulfillment |
| docs/03-CMS-AND-EDITOR.md | Tiptap editor, page builder, widgets, and built-in block system |
| docs/04-DATABASE-AND-AUTH.md | Supabase clients, auth flow, schema overview, RLS, and migration map |
| docs/05-DEVELOPER-GUIDE.md | Local setup, scripts, db workflow, sandbox reset, and contributor operations |
| docs/06-CLI-AND-SCAFFOLDING.md | create-nextblock, template sync, and generated-project behavior |
| docs/07-BLOCK-SDK-AND-EXTENSIBILITY.md | SDK contract and extensibility model |
| docs/08-NEXTBLOCK-CORTEX-AI-ARCHITECTURE.md | Premium Cortex AI package: model routing, BYOK, inline editor and global agent tools |
| docs/09-LIVE-DRAFT-MODE.md | Real-time visual editing and non-destructive draft previewing |
| docs/10-CUSTOM-BLOCKS.md | Data-driven custom blocks: schema, CRUD, dynamic rendering, and import/export |
| docs/11-SELF-HOSTED-DOCKER.md | One-click local self-hosted Docker stack: Supabase engines, MinIO storage, migration runner, and how it maps to cloud |
| docs/12-VERCEL-DEPLOYMENT.md | One-click cloud deploy, the browser setup wizard, and Supabase env-var aliases |
| docs/13-STAYING-UP-TO-DATE.md | npm run update for all four installs, the daily upstream-sync Action, and how migrations reach a deployed site |
| docs/README.md | Audience-based docs index |
Under the hood note: The migration folder under libs/db/src/supabase/migrations is the best source of truth for current platform capabilities.
π€ Contributing
NextBlock is open source under AGPL-3.0-or-later, and contributions are welcome.
- CONTRIBUTING.md β setup, everyday commands, and the repo-specific rules that are easy to trip over (append-only migrations, the generated template, the derived artifacts).
- CODE_OF_CONDUCT.md β Contributor Covenant v2.1.
- SECURITY.md β how to report a vulnerability privately. Please never use the public issue tracker for security reports.
π Connect With Us
Join the community and stay updated on the latest features.
π Acknowledgements
Thanks to Vercel for their support of open-source software.
Built with β€οΈ by the NextBlockβ’ Team. Licensed under AGPLv3.