If you’ve spent any time setting up full-stack frameworks or content management systems over the last few years, you know the onboarding tax. You are given a beautiful repository layout, but you are left to handle the database layer, image bucket permissions, and API orchestration strings yourself.
When we built NextBlock CMS—an open-core (AGPLv3) alternative to headless bloat built on Next.js 16 Server Components and strict PostgreSQL JSONB schemas—we vowed to fix the installation bottleneck.
Today, we are announcing that our recent code commits have officially closed that gap. NextBlock now features a completely free, automated 1-Click Deploy on Vercel that builds your database and object storage natively through Supabase with zero manual environment token configurations required from the user.
Solving the 4-Tier Deployment Spectrum
Every engineering team has a different deployment philosophy. To ensure flexibility without introducing architectural clutter into our Nx Monorepo, we spent this week locking down 4 primary initialization vectors:
The Frictionless Track (Vercel + Supabase Integration): Click a single button. Vercel sets up your edge endpoints and server components while the integrated Supabase webhook provisions your secure tables, auth middleware, and public assets bucket automatically on their free tier.
The Scaffolder Track (npm create nextblock): A streamlined command-line interface that allows developers to interactive-select settings, spin up a local directory layout, and begin instantly via npm run dev.
The Bare-Metal Monorepo Track (Git Clone): Designed for developers who want full control over our architectural engine core, custom Tiptap slash commands, and internal rendering pipelines.
The Isolated Track (npm run docker:setup): A single multi-stage Docker environment that coordinates localized PostgreSQL instances, automatically processes database migrations hidden inside our libraries, and stands up the Next.js standalone container.
The Road to Major Release v1.0.0
We aren't standing still. Next week, our focus shifts entirely to rigorous continuous integration and "breaker testing." We are systematically validating every edge-cache invalidation matrix, layout component tree depth, and database routing rule across these 4 structures.
This brings us to our absolute biggest milestone yet: The official v1.0.0 Major Release of NextBlock CMS is locked in to drop before the end of this summer!
Check out our source code, star the repository, and try the 1-click installer here:
🔗 GitHub Repository: github.com/nextblock-cms/nextblock
🔗 Live Sandbox: cms.nextblock.dev

Top comments (0)