[{"data":1,"prerenderedAt":1648},["ShallowReactive",2],{"blog-shipfast-documentation-nuxt-supabase":3,"related-shipfast-documentation-nuxt-supabase":454},{"id":4,"title":5,"author":6,"body":7,"category":6,"date":439,"description":440,"draft":441,"extension":442,"image":6,"meta":443,"navigation":444,"path":445,"seo":446,"stem":447,"tags":448,"__hash__":453},"blog\u002Fblog\u002Fshipfast-documentation-nuxt-supabase.md","ShipFast Documentation: Nuxt + Supabase Starter Kit",null,{"type":8,"value":9,"toc":402},"minimark",[10,14,19,22,33,41,45,48,53,61,65,68,71,75,79,92,96,104,108,115,119,128,132,135,139,142,146,155,159,168,172,175,179,182,195,199,202,206,209,213,216,220,223,232,236,239,243,246,250,253,257,270,274,277,281,284,318,322,334,337,341,344,348,351,355,387],[11,12,13],"p",{},"If you're searching for ShipFast documentation, you're really searching for one thing: a boilerplate whose docs explain how the plumbing actually works, not just how to clone a repo. This is that documentation, for BoiledPlate — an AI-native Nuxt + Supabase starter kit. It covers setup, billing, auth, deployment, and the edge cases that turn a five-minute demo into a three-week project.",[15,16,18],"h2",{"id":17},"why-stack-choice-isnt-your-real-problem","Why Stack Choice Isn't Your Real Problem",[11,20,21],{},"Ask ten founders how to ship fast and you get ten stack arguments: Next vs Nuxt, Postgres vs a hosted DB, Stripe vs Paddle. Pick whatever you already know and the debate is over by lunch. The framework is not what slows you down.",[11,23,24,25,32],{},"What eats weeks is the integration work between services — webhooks, row-level security, refunds, consent flows. We call it plumbing. We wrote all of it, then kept a running log of every edge case it took to make it trustworthy. If you want the long version, read ",[26,27,31],"a",{"href":28,"rel":29},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fhow-to-ship-saas-fast",[30],"nofollow","the stack is easy, the plumbing is the project",".",[11,34,35,36,32],{},"BoiledPlate runs on Nuxt + Supabase + Stripe + Resend. It's a good stack — not because it's the hype stack, but because each piece has a clean division of labor once wired correctly. ",[26,37,40],{"href":38,"rel":39},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fnuxt-supabase-stripe-saas-boilerplate",[30],"Here's what each piece actually demands",[15,42,44],{"id":43},"getting-started-agent-driven-setup-in-one-session","Getting Started: Agent-Driven Setup in One Session",[11,46,47],{},"Most boilerplates hand you an empty project and a README. BoiledPlate's setup runs itself.",[49,50,52],"h3",{"id":51},"what-happens-when-you-run-the-interview","What happens when you run the interview",[11,54,55,56,60],{},"Your coding agent's first session interviews you — product name, languages, theme, billing model — then reshapes the entire codebase to your answers using ",[57,58,59],"strong",{},"deterministic patches",": automated, repeatable code changes, not a wizard that overwrites your work.",[49,62,64],{"id":63},"instant-provisioning","Instant provisioning",[11,66,67],{},"The agent doesn't just write code. It provisions services: Stripe products and webhooks, a Supabase database with RLS, and Google sign-in. The plumbing nobody enjoys, done in one session instead of across a week of tab-switching between dashboards.",[11,69,70],{},"Manual wiring is the old way. You can still do it — that's what BoiledPlate Lite is for — but the point of the paid tier is skipping it.",[15,72,74],{"id":73},"the-plumbing-nobody-enjoys-and-boiledplate-handles","The Plumbing Nobody Enjoys (And BoiledPlate Handles)",[49,76,78],{"id":77},"webhook-architecture","Webhook architecture",[11,80,81,82,85,86,91],{},"Stripe delivers webhooks at least once, which means your handler will get called twice for the same event sooner or later. Every handler is ",[57,83,84],{},"idempotent",": repeated calls don't duplicate side effects. Stripe's own ",[26,87,90],{"href":88,"rel":89},"https:\u002F\u002Fdocs.stripe.com\u002Fwebhooks#best-practices",[30],"webhook best practices"," recommend exactly this. BoiledPlate ships it wired.",[49,93,95],{"id":94},"stripe-billing-state-as-your-source-of-truth","Stripe billing state as your source of truth",[11,97,98,99,32],{},"The checkout success page is a redirect, nothing more. It should never write billing state, because a user can close the tab, refresh, or never land on it at all. Subscription state lives in the webhook. We wrote a whole piece on why ",[26,100,103],{"href":101,"rel":102},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-webhooks-source-of-truth",[30],"your success page should not touch your billing state",[49,105,107],{"id":106},"row-level-security","Row-level security",[11,109,110,111,114],{},"Auth is the fast part. RLS is the part you forget. BoiledPlate ships ",[57,112,113],{},"row-level security"," enforced at query time in Supabase, so access rules live in the database, not scattered across middleware you hope you didn't skip.",[49,116,118],{"id":117},"refund-flows-and-subscription-state","Refund flows and subscription state",[11,120,121,122,127],{},"Refunds, cancellations, and downgrades all arrive as webhook events. Handling them — and reconciling them against your own tables — is the four-fifths of subscription work the demo never shows you. The ",[26,123,126],{"href":124,"rel":125},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-subscriptions-nuxt-supabase",[30],"full breakdown of Stripe subscriptions on Nuxt + Supabase"," walks the five decisions in order.",[15,129,131],{"id":130},"authentication-done-right","Authentication Done Right",[11,133,134],{},"Supabase auth ships with RLS policies out of the box, plus Google sign-in — the tedious OAuth callback and redirect wiring automated. Token refresh flows are included, so sessions don't expire silently mid-session. Multi-tenant patterns use RLS to scope every row to its owner, meaning a missed check in application code can't leak another tenant's data.",[15,136,138],{"id":137},"billing-that-survives-reality","Billing That Survives Reality",[11,140,141],{},"Real billing is multi-plan, not flat-rate. BoiledPlate defines your plans in one place and drives checkout, webhooks, and access from that config.",[49,143,145],{"id":144},"eu-consent-requirements","EU consent requirements",[11,147,148,149,154],{},"If you sell to Germany, you may need a withdrawal-right waiver encoded into the pay button itself. We built this and documented it: ",[26,150,153],{"href":151,"rel":152},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-checkout-consent-collection-german-withdrawal-waiver",[30],"encoding a German withdrawal waiver into Stripe Checkout",". It's the kind of requirement you discover after launch if a starter doesn't handle it.",[49,156,158],{"id":157},"handling-webhook-failures-without-data-loss","Handling webhook failures without data loss",[11,160,161,162,167],{},"Some webhook failures should throw so Stripe retries; some should never throw because retrying would double-deliver. The distinction matters when the webhook itself is how your product gets delivered — ",[26,163,166],{"href":164,"rel":165},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fthe-github-invite-is-the-product-building-a-stripe-webhook-where-delivery-throws",[30],"the GitHub invite IS the product"," is a real example from our own store.",[15,169,171],{"id":170},"database-design-for-saas","Database Design for SaaS",[11,173,174],{},"BoiledPlate includes Supabase schema templates with RLS policies that actually protect data rather than decorate it. The hard cases are handled by design: deleted users, orphaned records, and tier downgrades. Migrations are structured to survive agent updates, so customizing your schema doesn't fight future releases.",[15,176,178],{"id":177},"ai-agent-consistency-agentsmd-as-contract","AI Agent Consistency: AGENTS.md as Contract",[11,180,181],{},"Agents drift. Ask one to add a table today and another to add one next month, and you'll get two different data-access patterns unless something anchors them.",[11,183,184,185,188,189,194],{},"That anchor is ",[57,186,187],{},"AGENTS.md",": a contract file documenting the one documented way to do data access, handle secrets, and follow conventions. Write conventions for the agent, not the next hire — ",[26,190,193],{"href":191,"rel":192},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fconventions-for-ai-coding-agents",[30],"here's why that framing changes what you write down",". Because setup runs on deterministic patches, agent output stays consistent across sessions.",[15,196,198],{"id":197},"updates-without-merge-hell","Updates Without Merge Hell",[11,200,201],{},"BoiledPlate Pro ships semantic, agent-readable release notes. Updates are opt-in, applied to your customized code without forcing a merge you'll dread. The goal is staying current without lock-in to the version you bought.",[15,203,205],{"id":204},"internationalization-from-day-one","Internationalization from Day One",[11,207,208],{},"Four languages ship on day one, not as an afterthought. i18n is a tax you pay whenever you add it — the later you add it, the more strings you've hardcoded. Doing it at the start avoids that debt, and it pairs with multi-currency billing so language and pricing move together.",[15,210,212],{"id":211},"blog-and-content-infrastructure","Blog and Content Infrastructure",[11,214,215],{},"The blog is prerendered Markdown: fast, SEO-friendly, and Git-native. You write posts in Markdown without touching component code. JSON-LD structured data, canonical URLs, and og: tags are configured per page.",[15,217,219],{"id":218},"seo-out-of-the-box","SEO Out of the Box",[11,221,222],{},"BoiledPlate generates JSON-LD for organization and product schema, handles canonical URLs, and sets og:url and social sharing tags. Prerendered pages tend to outrank dynamic ones because crawlers get finished HTML, not a spinner. Sitemap and robots.txt follow sane conventions.",[11,224,225,226,231],{},"One caution from experience: get canonicals right. Ours once ",[26,227,230],{"href":228,"rel":229},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Four-blog-canonically-pointed-at-localhost",[30],"told Google its canonical URL was localhost:3000",". That's the kind of bug a starter should prevent, and now does.",[15,233,235],{"id":234},"transactional-email-resend-integration","Transactional Email: Resend Integration",[11,237,238],{},"Receipts, confirmations, and billing alerts all need to send — and send exactly once. Resend is simple to send with, annoying to send idempotently. BoiledPlate ships a template system, handles failures gracefully, and lets you test flows without hitting production.",[15,240,242],{"id":241},"deployment-minutes-not-hours","Deployment: Minutes, Not Hours",[11,244,245],{},"Deploy to Vercel or Netlify from GitHub. Environment variables for Stripe, Supabase, and Google are documented, database migrations run on deploy, and the stack is structured for fast cold starts.",[15,247,249],{"id":248},"dashboard-theming-preset-or-custom","Dashboard Theming: Preset or Custom",[11,251,252],{},"Pick a preset in the setup interview — Warm Studio, Clean SaaS, Midnight Pro, Sharp Enterprise — or describe your own and the agent maps it onto the codebase. Theming runs on CSS variables the agent can rewrite, with a persisted light\u002Fdark toggle and accessible color systems.",[15,254,256],{"id":255},"typescript-strict-mode-end-to-end","TypeScript Strict Mode End to End",[11,258,259,260,264,265,32],{},"Strict mode catches real bugs before runtime. Database types are generated from your schema, API contracts follow from types, and Stripe webhook payloads are typed on the client. One warning from the field: some packages break ",[261,262,263],"code",{},"nuxt typecheck"," — we hit it with ",[26,266,269],{"href":267,"rel":268},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fvercel-web-analytics-nuxt-4-analytics-package-breaks-typecheck",[30],"@vercel\u002Fanalytics on Nuxt 4",[15,271,273],{"id":272},"the-anti-plumbing-stack-why-these-tools-work-together","The Anti-Plumbing Stack: Why These Tools Work Together",[11,275,276],{},"Nuxt gives you file-based routing and server routes in one project. Supabase enforces RLS at query time instead of in middleware you might forget. Stripe gives you webhook delivery guarantees you can build on. Together they beat \"microservices for everything\" because there are fewer seams to wire — and seams are where plumbing lives.",[15,278,280],{"id":279},"real-world-bugs-and-lessons-learned","Real-World Bugs and Lessons Learned",[11,282,283],{},"Documentation that only shows the happy path is marketing. Here are real fixes baked in:",[285,286,287,300,306,312],"ul",{},[288,289,290,293,294,299],"li",{},[57,291,292],{},"JSON-LD hydration crashes",": a page that ",[26,295,298],{"href":296,"rel":297},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fthe-page-that-returned-200-on-the-server-and-500-in-the-browser-a-json-ld-tempor",[30],"returned 200 on the server and 500 in the browser",", traced to source order.",[288,301,302,305],{},[57,303,304],{},"Canonical redirect loops"," and localhost canonicals, covered above.",[288,307,308,311],{},[57,309,310],{},"Peer dependency conflicts"," that break typecheck.",[288,313,314,317],{},[57,315,316],{},"Webhook timeouts and signature verification failures",", handled by idempotent, signature-verified handlers.",[15,319,321],{"id":320},"free-vs-pro-lite-vs-lifetime-updates","Free vs. Pro: Lite vs. Lifetime Updates",[11,323,324,329,330,333],{},[26,325,328],{"href":326,"rel":327},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Ffree-nuxt-supabase-saas-boilerplate",[30],"BoiledPlate Lite"," is free and MIT-licensed: clone it, wire the services manually, ship. ",[57,331,332],{},"Pro"," is €159 one-time with lifetime updates and instant delivery via GitHub — no subscription trap, one price, forever access.",[11,335,336],{},"Choose Lite if you enjoy the wiring or want to learn it. Choose Pro if you'd rather the agent provision everything in one session and save the weeks.",[15,338,340],{"id":339},"tutorials-and-common-pitfalls","Tutorials and Common Pitfalls",[11,342,343],{},"The tutorials walk from a basic SaaS (auth + subscription) through multi-tier billing with seat limits, email confirmation flows, custom branding, and deploying with real secrets. Each maps to a pitfall the architecture prevents: RLS enforced at the database layer, idempotency keys against double charges, source-of-truth billing to stop state drift, refresh flows against silent token expiry, and build-time validation for missing i18n keys.",[15,345,347],{"id":346},"extending-boiledplate","Extending BoiledPlate",[11,349,350],{},"Add custom tables while preserving RLS, write patches the agent can apply, add new Stripe products to existing subscriptions, and register custom webhook handlers for your domain — all following the AGENTS.md contract so future updates stay clean.",[15,352,354],{"id":353},"glossary","Glossary",[285,356,357,363,369,375,381],{},[288,358,359,362],{},[57,360,361],{},"Deterministic patches",": automated, repeatable code changes that customize the starter to your answers.",[288,364,365,368],{},[57,366,367],{},"Idempotent webhook",": safely handles repeated calls without duplicating side effects.",[288,370,371,374],{},[57,372,373],{},"Row-level security (RLS)",": access enforced at query time in the database.",[288,376,377,380],{},[57,378,379],{},"Source of truth",": Stripe webhooks for billing state, not client-side success pages.",[288,382,383,386],{},[57,384,385],{},"Agent-readable conventions",": the one documented way, written down so agents don't drift.",[11,388,389,390,395,396,401],{},"Ready to skip the plumbing? ",[26,391,394],{"href":392,"rel":393},"https:\u002F\u002Fboiledplate.ai",[30],"Start with BoiledPlate"," or browse ",[26,397,400],{"href":398,"rel":399},"https:\u002F\u002Fboiledplate.ai\u002Fblog",[30],"the full blog"," for the edge cases behind every feature above.",{"title":403,"searchDepth":404,"depth":404,"links":405},"",3,[406,408,412,418,419,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438],{"id":17,"depth":407,"text":18},2,{"id":43,"depth":407,"text":44,"children":409},[410,411],{"id":51,"depth":404,"text":52},{"id":63,"depth":404,"text":64},{"id":73,"depth":407,"text":74,"children":413},[414,415,416,417],{"id":77,"depth":404,"text":78},{"id":94,"depth":404,"text":95},{"id":106,"depth":404,"text":107},{"id":117,"depth":404,"text":118},{"id":130,"depth":407,"text":131},{"id":137,"depth":407,"text":138,"children":420},[421,422],{"id":144,"depth":404,"text":145},{"id":157,"depth":404,"text":158},{"id":170,"depth":407,"text":171},{"id":177,"depth":407,"text":178},{"id":197,"depth":407,"text":198},{"id":204,"depth":407,"text":205},{"id":211,"depth":407,"text":212},{"id":218,"depth":407,"text":219},{"id":234,"depth":407,"text":235},{"id":241,"depth":407,"text":242},{"id":248,"depth":407,"text":249},{"id":255,"depth":407,"text":256},{"id":272,"depth":407,"text":273},{"id":279,"depth":407,"text":280},{"id":320,"depth":407,"text":321},{"id":339,"depth":407,"text":340},{"id":346,"depth":407,"text":347},{"id":353,"depth":407,"text":354},"2026-08-21","Complete ShipFast documentation for BoiledPlate. Learn setup, billing, auth, deployment, and real-world plumbing between services.",false,"md",{},true,"\u002Fblog\u002Fshipfast-documentation-nuxt-supabase",{"title":5,"description":440},"blog\u002Fshipfast-documentation-nuxt-supabase",[449,450,451,452],"shipfast","documentation","nuxt","supabase","lVl6A2sE7KyKTfyJyQs5XneP1sXVcI7AabvsvyIpBwY",[455,838,1304],{"id":456,"title":457,"author":6,"body":458,"category":6,"date":827,"description":828,"draft":441,"extension":442,"image":6,"meta":829,"navigation":444,"path":830,"seo":831,"stem":832,"tags":833,"__hash__":837},"blog\u002Fblog\u002Fshipfast-saas-boilerplate-comparison.md","ShipFast vs BoiledPlate: SaaS Boilerplate Comparison",{"type":8,"value":459,"toc":808},[460,463,467,470,473,477,485,488,505,508,512,515,523,527,530,533,537,546,554,562,566,569,577,581,589,592,596,604,608,616,618,621,625,631,634,638,641,644,648,651,655,658,662,781,784,788,791,795],[11,461,462],{},"ShipFast made \"launch in days, not weeks\" a rallying cry, and for good reason: a Next.js boilerplate with auth, Stripe, and battle-tested UI components saves real time. But if you've actually shipped a SaaS, you know the template is the easy part. The weeks disappear in the wiring — webhook idempotency, RLS policies, refund flows, EU consent. This is where an AI-native starter changes the math. Here's an honest comparison of ShipFast against BoiledPlate, and why the plumbing is the whole game.",[15,464,466],{"id":465},"what-shipfast-does-and-what-it-doesnt","What ShipFast Does (And What It Doesn't)",[11,468,469],{},"ShipFast is a Next.js SaaS boilerplate. It ships authentication, Stripe payments, a UI component library, email scaffolding, and sensible defaults. It's popular because it's genuinely good at what it is: a code template you clone and customize.",[11,471,472],{},"What it doesn't do is provision anything. You still create your Stripe products, configure webhooks, verify signatures, design your database schema, write RLS policies, set up Google OAuth, and wire your environment variables by hand. ShipFast hands you the code. The infrastructure is your job. For teams comfortable with that setup overhead, that's a fair trade.",[15,474,476],{"id":475},"the-real-problem-with-manual-saas-setup","The Real Problem With Manual SaaS Setup",[11,478,479,480,484],{},"Choosing a stack takes an afternoon. Wiring four services into something trustworthy takes weeks. We know because we ",[26,481,483],{"href":38,"rel":482},[30],"logged every edge case it took"," to make ours reliable.",[11,486,487],{},"The list is longer than it looks:",[285,489,490,493,496,499,502],{},[288,491,492],{},"Stripe product creation, price objects, webhook endpoints, signature verification",[288,494,495],{},"Supabase schema design, migrations, and RLS policies that actually isolate tenants",[288,497,498],{},"Google OAuth setup, redirect URIs, token handling",[288,500,501],{},"Transactional email (Resend or SendGrid) that sends exactly once",[288,503,504],{},"Testing all of it before a real customer hits it",[11,506,507],{},"Most boilerplates, ShipFast included, leave you at the starting line of this list.",[15,509,511],{"id":510},"boiledplate-agent-driven-provisioning-not-just-code","BoiledPlate: Agent-Driven Provisioning, Not Just Code",[11,513,514],{},"BoiledPlate is an AI-native Nuxt + Supabase starter whose setup runs itself. Instead of handing you a template to customize, an AI coding agent interviews you — name, languages, theme, billing model — then reshapes the entire codebase with deterministic patches and provisions your services.",[11,516,517,518,522],{},"In a single session, your agent creates Stripe products and webhooks, stands up a Supabase database with row-level security, and configures Google sign-in. As the ",[26,519,521],{"href":392,"rel":520},[30],"homepage"," puts it: your coding agent doesn't just write the code — it provisions the services. That's the categorical difference from a code-only template.",[15,524,526],{"id":525},"nuxt-supabase-stripe-why-this-stack-works-together","Nuxt + Supabase + Stripe: Why This Stack Works Together",[11,528,529],{},"The stack is deliberate. Nuxt's server routes map cleanly onto webhook handlers. Supabase RLS enforces billing state at the database layer, not in fragile client-side logic. Stripe webhooks are the source of truth for subscription state. TypeScript strict mode runs end to end, so fewer surprises reach production.",[11,531,532],{},"Next.js, ShipFast's foundation, is excellent — but it tends to demand more glue code to reach the same guarantees, especially around server-side billing state.",[15,534,536],{"id":535},"idempotent-webhooks-the-plumbing-nobody-talks-about","Idempotent Webhooks: The Plumbing Nobody Talks About",[11,538,539,540,545],{},"Webhook delivery matters more than UI elegance, because a dropped or duplicated event corrupts billing state silently. Stripe ",[26,541,544],{"href":542,"rel":543},"https:\u002F\u002Fdocs.stripe.com\u002Fwebhooks#handle-duplicate-events",[30],"explicitly recommends"," handling duplicate events, because it will send them.",[11,547,548,549,553],{},"BoiledPlate's webhook handling is idempotent by design: repeated Stripe events don't double-apply side effects, signatures are verified to block replay attacks, and refund flows don't corrupt subscription state. We wrote about the harder version of this problem — ",[26,550,552],{"href":164,"rel":551},[30],"a Stripe webhook where some failures must throw and some never should"," — because the difference between a retry and a permanent failure is where real bugs live.",[11,555,556,557,561],{},"A related principle: ",[26,558,560],{"href":101,"rel":559},[30],"your checkout success page should not touch your billing state",". The webhook is the source of truth. The success page is just a redirect.",[15,563,565],{"id":564},"row-level-security-database-enforced-billing","Row-Level Security: Database-Enforced Billing",[11,567,568],{},"Client-side permission checks are suggestions. RLS is enforcement. BoiledPlate enforces multi-tenant isolation at query time, so a query that would leak another tenant's data is simply impossible to write, not merely discouraged by middleware.",[11,570,571,572,576],{},"This also carries into compliance. EU rules around German withdrawal waivers and consent flows aren't optional if you sell there, and we encoded one directly into ",[26,573,575],{"href":151,"rel":574},[30],"Stripe Checkout's consent_collection",". Database-enforced billing plus correct consent is the unglamorous part that keeps you out of trouble.",[15,578,580],{"id":579},"agent-consistency-the-agentsmd-contract","Agent Consistency: The AGENTS.md Contract",[11,582,583,584,588],{},"Coding agents drift without conventions. Ask Claude the same question twice and you may get two different data-access patterns. BoiledPlate ships an AGENTS.md contract: one documented way to read secrets and access data, so agent output stays consistent. We argue you should ",[26,585,587],{"href":191,"rel":586},[30],"write your conventions for the agent, not the next hire"," — the agent reads them every session.",[11,590,591],{},"Deterministic patches make customization repeatable, and semantic, agent-readable release notes let your agent understand what changed. Updates are opt-in, applied to your customized code without a merge-hell rewrite.",[15,593,595],{"id":594},"billing-edge-cases-that-bite-you-later","Billing Edge Cases That Bite You Later",[11,597,598,599,603],{},"Subscriptions aren't binary. They transition: active, grace period, past due, canceled. Layer in refund idempotency, double-refund prevention, proration on mid-cycle plan changes, and failed-payment dunning retries, and you have a matrix that's easy to get wrong. Manual setup means debugging these at 2 AM after a customer complaint. BoiledPlate's ",[26,600,602],{"href":124,"rel":601},[30],"Stripe subscription setup"," handles these transitions as designed behavior, not afterthoughts.",[15,605,607],{"id":606},"transactional-email-and-seo-not-afterthoughts","Transactional Email and SEO: Not Afterthoughts",[11,609,610,611,615],{},"Email verification and receipts affect churn, so Resend is integrated, not bolted on later — including sending exactly once, which is harder than it sounds. On SEO, starter kits routinely ship broken defaults. We shipped one ourselves: ",[26,612,614],{"href":228,"rel":613},[30],"our blog told Google its canonical URL was localhost:3000",". BoiledPlate ships JSON-LD structured data, correct og:url canonicals, and a prerendered Markdown blog — correct by default, customizable after.",[15,617,205],{"id":204},[11,619,620],{},"Four languages ship out of the box. This matters because adding i18n later means refactoring every string, route, and email template. Retrofitting is the \"we'll translate later\" trap that never gets untrapped. Building on top of existing i18n is cheap; grafting it on afterward is not.",[15,622,624],{"id":623},"free-vs-paid-boiledplate-lite-vs-pro","Free vs. Paid: BoiledPlate Lite vs. Pro",[11,626,627,630],{},[26,628,328],{"href":326,"rel":629},[30]," is free and MIT-licensed: the same Nuxt 4, Supabase, Stripe, and Resend app, minus the AI tooling. You clone it and wire it by hand — much like using ShipFast, but Vue-based instead of React.",[11,632,633],{},"Pro is €159 one-time, with lifetime updates and instant delivery via GitHub. It includes the agent-driven provisioning: the interview, the deterministic patches, the whole set-itself-up experience. Honestly: Lite is more work, Pro is instant. Pick Lite if you enjoy the wiring or want to inspect everything first; pick Pro if you'd rather ship product.",[15,635,637],{"id":636},"dashboard-theming-deployment-and-typescript","Dashboard Theming, Deployment, and TypeScript",[11,639,640],{},"Theming is part of the interview: pick a preset (Warm Studio, Clean SaaS, Midnight Pro, Sharp Enterprise) or describe your own colors in plain language, and the agent maps it onto the codebase. Deployment runs in minutes to Vercel, Netlify, or self-hosted — and because the agent interview handles environment variables and provisioning, the classic first-run friction (missing keys, misconfigured webhooks) largely disappears.",[11,642,643],{},"TypeScript strict mode is enforced, not optional. The cost is more upfront friction; the benefit is catching edge cases before production instead of after.",[15,645,647],{"id":646},"github-delivery-the-product-is-your-code","GitHub Delivery: The Product Is Your Code",[11,649,650],{},"When you buy Pro, you get a GitHub repo. That's the product. Your code, in your control, from day one — no locked-in SaaS platform, no managed builder holding your app hostage. This is the opposite of \"no-code\" platforms where you rent your product forever.",[15,652,654],{"id":653},"honest-gaps-and-trade-offs","Honest Gaps and Trade-Offs",[11,656,657],{},"BoiledPlate uses Nuxt, so if you're committed to Next.js or React, ShipFast is the better fit. Supabase is opinionated — no swapping in Firebase. Stripe is non-negotiable for the subscription logic. And it's not a visual builder; you're still coding. If you need a different payment processor or a fundamentally different stack, build from scratch.",[15,659,661],{"id":660},"comparison-at-a-glance","Comparison at a Glance",[663,664,665,683],"table",{},[666,667,668],"thead",{},[669,670,671,674,677,680],"tr",{},[672,673],"th",{},[672,675,676],{},"ShipFast",[672,678,679],{},"BoiledPlate Pro",[672,681,682],{},"Building alone",[684,685,686,701,714,727,740,753,767],"tbody",{},[669,687,688,692,695,698],{},[689,690,691],"td",{},"Framework",[689,693,694],{},"Next.js",[689,696,697],{},"Nuxt 4",[689,699,700],{},"Your choice",[669,702,703,706,709,712],{},[689,704,705],{},"Provisions services",[689,707,708],{},"No",[689,710,711],{},"Yes (agent)",[689,713,708],{},[669,715,716,719,722,724],{},[689,717,718],{},"Auth + RLS",[689,720,721],{},"Auth",[689,723,718],{},[689,725,726],{},"DIY",[669,728,729,732,735,738],{},[689,730,731],{},"Idempotent webhooks",[689,733,734],{},"Manual",[689,736,737],{},"Built-in",[689,739,726],{},[669,741,742,745,748,751],{},[689,743,744],{},"i18n",[689,746,747],{},"Add-on",[689,749,750],{},"4 languages",[689,752,726],{},[669,754,755,758,761,764],{},[689,756,757],{},"Delivery",[689,759,760],{},"Code template",[689,762,763],{},"GitHub repo",[689,765,766],{},"—",[669,768,769,772,775,778],{},[689,770,771],{},"Time to launch",[689,773,774],{},"Days",[689,776,777],{},"A session",[689,779,780],{},"Weeks+",[11,782,783],{},"Over 12 months, the cost of ownership isn't the license fee — it's the maintenance and update friction. Semantic release notes and opt-in patches keep that low.",[15,785,787],{"id":786},"who-should-pick-boiledplate-and-who-shouldnt","Who Should Pick BoiledPlate (And Who Shouldn't)",[11,789,790],{},"BoiledPlate is ideal for Nuxt-comfortable developers, teams using AI coding agents, and billing-heavy products where the webhook and RLS work would otherwise eat weeks. It's sized for teams of one to three, not enterprise procurement. Accept the trade-offs — Vue, Supabase, Stripe, no swaps — and it's a fast path. Reject them and ShipFast or a from-scratch build serves you better.",[15,792,794],{"id":793},"conclusion-plumbing-done-shipping-starts","Conclusion: Plumbing Done, Shipping Starts",[11,796,797,798,802,803,807],{},"The framework is not what slows you down. ShipFast is right that you can launch fast — but a code template still leaves the ",[26,799,801],{"href":28,"rel":800},[30],"plumbing as the project",". BoiledPlate automates that plumbing so you own the product, not the setup: one agent session provisions Stripe, Supabase with RLS, and Google sign-in, then hands you your code via GitHub. Skip the weeks of wiring and start shipping. Browse the ",[26,804,806],{"href":398,"rel":805},[30],"blog"," for the edge cases we hit so you don't have to.",{"title":403,"searchDepth":404,"depth":404,"links":809},[810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826],{"id":465,"depth":407,"text":466},{"id":475,"depth":407,"text":476},{"id":510,"depth":407,"text":511},{"id":525,"depth":407,"text":526},{"id":535,"depth":407,"text":536},{"id":564,"depth":407,"text":565},{"id":579,"depth":407,"text":580},{"id":594,"depth":407,"text":595},{"id":606,"depth":407,"text":607},{"id":204,"depth":407,"text":205},{"id":623,"depth":407,"text":624},{"id":636,"depth":407,"text":637},{"id":646,"depth":407,"text":647},{"id":653,"depth":407,"text":654},{"id":660,"depth":407,"text":661},{"id":786,"depth":407,"text":787},{"id":793,"depth":407,"text":794},"2026-09-07","Compare ShipFast and BoiledPlate SaaS templates. Learn which boilerplate handles auth, Stripe, and infrastructure best for your Next.js project.",{},"\u002Fblog\u002Fshipfast-saas-boilerplate-comparison",{"title":457,"description":828},"blog\u002Fshipfast-saas-boilerplate-comparison",[449,834,835,836],"saas boilerplate","next.js","saas development","KhX3NSHLjAPepGO0fWifUvLcdlXA5piVm6wtgmZeFJk",{"id":839,"title":840,"author":6,"body":841,"category":6,"date":1293,"description":1294,"draft":441,"extension":442,"image":6,"meta":1295,"navigation":444,"path":1296,"seo":1297,"stem":1298,"tags":1299,"__hash__":1303},"blog\u002Fblog\u002Fshipfast-reviews-honest-comparison.md","ShipFast Reviews: Honest Comparison vs BoiledPlate",{"type":8,"value":842,"toc":1246},[843,846,850,853,857,860,864,867,871,874,878,886,890,899,903,906,910,913,917,925,929,933,941,945,948,952,961,965,968,972,976,979,983,990,994,997,1001,1005,1012,1016,1019,1023,1031,1035,1039,1047,1051,1054,1058,1064,1068,1071,1075,1079,1087,1091,1094,1098,1101,1105,1110,1115,1125,1131,1135,1141,1147,1153,1156,1160,1163,1167,1170,1174,1181,1185,1190,1199,1202,1206,1243],[11,844,845],{},"If you search \"shipfast reviews,\" you get a split screen. Product Hunt and TrustPilot praise the clean code and fast landing page. Reddit threads call it \"not worth $200\" and note you could copy the marketing components from Tailwind UI. Both are right, because they're measuring different things. This comparison ignores the marketing on either side and looks at what actually eats your launch weeks: the plumbing between services.",[15,847,849],{"id":848},"what-this-article-covers","What This Article Covers",[11,851,852],{},"We'll compare ShipFast and BoiledPlate on the work that survives contact with a real, paying product — webhooks, refunds, row-level security, EU consent — not on how fast you can put a hero section on a page. Full disclosure: this site runs on BoiledPlate. We'll be specific about where each tool wins.",[15,854,856],{"id":855},"the-shipfast-landscape","The ShipFast Landscape",[11,858,859],{},"ShipFast is a Next.js boilerplate that ships auth, Stripe, email, and a polished set of landing components. Reviews are genuinely positive on structure and speed. The recurring criticism is that you're paying mostly for UI you could assemble yourself.",[49,861,863],{"id":862},"landing-page-marketing-components","Landing Page & Marketing Components",[11,865,866],{},"Pre-built UI is table stakes now. Every serious starter ships a hero, pricing table, and testimonials block. It's nice, but it isn't the thing that decides whether you launch this month or next quarter.",[49,868,870],{"id":869},"code-quality-structure","Code Quality & Structure",[11,872,873],{},"Reviewers praise ShipFast's \"clear code.\" That matters right up until you need to change billing logic. Clear code you don't understand is still code you'll rewrite. The real test is what happens when you customize.",[49,875,877],{"id":876},"speed-to-launch-claims","Speed-to-Launch Claims",[11,879,880,881,885],{},"\"Ship in days\" usually means ship a ",[882,883,884],"em",{},"landing page"," in days. Shipping a deployed product that takes money, verifies webhooks, and doesn't leak one user's data to another is a different measurement — and it's the one that matters.",[15,887,889],{"id":888},"the-plumbing-problem-shipfast-solves-and-doesnt","The Plumbing Problem ShipFast Solves (And Doesn't)",[11,891,892,893,898],{},"Starter kits earn their price by wiring the slowest pieces: auth and payments. That's real value. As we've ",[26,894,897],{"href":895,"rel":896},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fnuxt-saas-boilerplate-for-ai-agents",[30],"written before",", the parts were never the problem — bolting them to each other was what ate the weekends.",[49,900,902],{"id":901},"auth-payments-are-just-the-start","Auth & Payments Are Just the Start",[11,904,905],{},"Wiring Stripe Checkout is easy. Wiring a webhook that agrees with your database, handles retries idempotently, and processes refunds correctly is the actual project. Most reviews never test this because most demos never take a real payment.",[49,907,909],{"id":908},"where-most-starters-fall-short","Where Most Starters Fall Short",[11,911,912],{},"The gaps show up later: row-level security policies, multi-plan billing with upgrades and downgrades, and legal edge cases like EU withdrawal consent. These don't appear in a landing-page demo, so they don't appear in most reviews either.",[49,914,916],{"id":915},"boiledplates-angle-agent-driven-setup","BoiledPlate's Angle: Agent-Driven Setup",[11,918,919,920,924],{},"BoiledPlate's difference isn't more components — it's that ",[26,921,923],{"href":392,"rel":922},[30],"your coding agent provisions the services",". It interviews you (name, languages, theme, billing model), then applies deterministic patches to reshape the codebase and set up Stripe products, webhooks, a Supabase database with RLS, and Google sign-in in one session.",[15,926,928],{"id":927},"stack-comparison-tech-choices-matter","Stack Comparison: Tech Choices Matter",[49,930,932],{"id":931},"nextjs-vs-nuxt","Next.js vs. Nuxt",[11,934,935,936,940],{},"ShipFast is Next.js. BoiledPlate is Nuxt 4. Both are excellent. The honest truth from our ",[26,937,939],{"href":28,"rel":938},[30],"ship-fast breakdown",": the framework is not what slows you down. Pick the one you already know.",[49,942,944],{"id":943},"firebase-vs-supabase-postgres","Firebase vs. Supabase + Postgres",[11,946,947],{},"ShipFast commonly pairs with MongoDB\u002FSupabase options; BoiledPlate is Supabase-first. The distinction that matters is row-level security enforced at query time in Postgres, versus security rules bolted on at the application layer. RLS is baked in, not an afterthought.",[49,949,951],{"id":950},"stripe-integration-depth","Stripe Integration Depth",[11,953,954,955,960],{},"This is where boilerplates separate. Signature verification, idempotent handlers, and failure recovery are the difference between billing that works in a demo and billing that survives production. Stripe's own ",[26,956,959],{"href":957,"rel":958},"https:\u002F\u002Fdocs.stripe.com\u002Fapi\u002Fidempotent_requests",[30],"documentation on idempotent requests"," exists precisely because retries are the norm, not the exception.",[49,962,964],{"id":963},"email-resend-vs-sendgrid-vs-custom-smtp","Email: Resend vs. SendGrid vs. Custom SMTP",[11,966,967],{},"Sending an email is simple. Sending exactly one email, once, on a webhook that might fire twice, is not. BoiledPlate uses Resend for transactional email with that duplicate problem in mind.",[15,969,971],{"id":970},"the-real-cost-of-customization","The Real Cost of Customization",[49,973,975],{"id":974},"deterministic-patches-vs-manual-merge-hell","Deterministic Patches vs. Manual Merge Hell",[11,977,978],{},"Buy a boilerplate, customize it heavily, and the next update becomes a git conflict you dread. BoiledPlate ships semantic, agent-readable release notes and opt-in updates so you can pull new features without merge hell.",[49,980,982],{"id":981},"agentsmd-consistency-for-ai-coders","AGENTS.md: Consistency for AI Coders",[11,984,985,986,32],{},"Coding agents drift. Ask Claude to add a feature twice and you get two different data-access patterns. BoiledPlate ships an AGENTS.md contract documenting one way to do data access and secrets, so ",[26,987,989],{"href":191,"rel":988},[30],"agent output stays consistent",[49,991,993],{"id":992},"multi-language-support-from-day-one","Multi-language Support From Day One",[11,995,996],{},"i18n is a tax you pay forever if you bolt it on late. Four languages ship from day one, so you're not hunting the five places a new locale string has to land before the build stops complaining.",[15,998,1000],{"id":999},"billing-edge-cases-nobody-mentions","Billing Edge Cases Nobody Mentions",[49,1002,1004],{"id":1003},"eu-consent-laws-german-withdrawal-waivers","EU Consent Laws & German Withdrawal Waivers",[11,1006,1007,1008,1011],{},"Selling digital goods in the EU means handling withdrawal rights. German law, for example, requires an explicit waiver before instant delivery. BoiledPlate encodes this into ",[26,1009,575],{"href":151,"rel":1010},[30]," — and treats the webhook, not the success page, as the source of truth.",[49,1013,1015],{"id":1014},"refund-workflows-subscription-state","Refund Workflows & Subscription State",[11,1017,1018],{},"Refunds and cancellations arrive as webhooks that can be delivered more than once. Idempotent handlers that update subscription state exactly once are what keep your database honest.",[49,1020,1022],{"id":1021},"multi-plan-subscription-management","Multi-Plan Subscription Management",[11,1024,1025,1026,1030],{},"Downgrades, cancellations, grace periods, dunning — these are the five decisions behind real ",[26,1027,1029],{"href":124,"rel":1028},[30],"Stripe subscriptions on Supabase",". A single-plan demo never has to answer them.",[15,1032,1034],{"id":1033},"code-quality-red-flags","Code Quality Red Flags",[49,1036,1038],{"id":1037},"json-ld-hydration-crashes","JSON-LD Hydration Crashes",[11,1040,1041,1042,1046],{},"Structured data that returns 200 from curl but 500 in Chrome is a real class of bug — we hit exactly that with a ",[26,1043,1045],{"href":296,"rel":1044},[30],"JSON-LD source-order issue",". Ask whether a kit's SEO works in the browser, not just the server.",[49,1048,1050],{"id":1049},"canonical-urls-ogurl-tags","Canonical URLs & og:url Tags",[11,1052,1053],{},"Prerendered Markdown blogs need correct canonicals. It's the kind of quiet bug that ships to production and silently costs you rankings.",[49,1055,1057],{"id":1056},"peer-dependency-hell","Peer Dependency Hell",[11,1059,1060,1061,32],{},"The Nuxt ecosystem and Supabase SDK versions can fight. A well-maintained kit pins and tests these so you don't spend a day on ",[261,1062,1063],{},"npm install",[49,1065,1067],{"id":1066},"typescript-strictness","TypeScript Strictness",[11,1069,1070],{},"Loose types hide billing bugs. BoiledPlate is typed end to end in strict mode, so a mismatched Stripe payload fails at compile time, not at 2 a.m.",[15,1072,1074],{"id":1073},"product-delivery-mechanics","Product Delivery Mechanics",[49,1076,1078],{"id":1077},"github-invites-vs-clone-and-wire","GitHub Invites vs. Clone-and-Wire",[11,1080,1081,1082,1086],{},"BoiledPlate Pro delivers via instant GitHub invite — ",[26,1083,1085],{"href":164,"rel":1084},[30],"the invite is literally the product",", triggered by a Stripe webhook where some failures must throw and some must never.",[49,1088,1090],{"id":1089},"webhook-driven-updates","Webhook-Driven Updates",[11,1092,1093],{},"Because delivery is version-controlled, new features arrive as opt-in updates rather than a fresh download you have to re-customize.",[49,1095,1097],{"id":1096},"licensing-commercial-use","Licensing & Commercial Use",[11,1099,1100],{},"BoiledPlate Lite is MIT-licensed and free. Pro is a one-time purchase with lifetime updates. Both are yours to ship commercially.",[15,1102,1104],{"id":1103},"pricing-reality-check","Pricing Reality Check",[11,1106,1107,1109],{},[57,1108,676],{},": one-time cost, fixed Next.js stack, clear billing.",[11,1111,1112,1114],{},[57,1113,679],{},": €159 one-time, lifetime updates, agent-provisioned services, instant GitHub delivery.",[11,1116,1117,1119,1120,1124],{},[57,1118,328],{},": free, MIT-licensed. ",[26,1121,1123],{"href":326,"rel":1122},[30],"Clone and wire it manually"," — no updates, no support.",[11,1126,1127,1130],{},[57,1128,1129],{},"Hidden costs both miss",": your time debugging Stripe webhooks, EU consent flows, and RLS policies. That's the real invoice, and no landing page pays it down.",[15,1132,1134],{"id":1133},"who-should-use-what","Who Should Use What",[11,1136,1137,1140],{},[57,1138,1139],{},"Choose ShipFast if"," you want a Next.js landing page plus basic Stripe fast and don't need billing complexity yet.",[11,1142,1143,1146],{},[57,1144,1145],{},"Choose BoiledPlate Lite if"," you're happy wiring Supabase and Stripe by hand, want MIT freedom, and treat learning as part of the goal.",[11,1148,1149,1152],{},[57,1150,1151],{},"Choose BoiledPlate Pro if"," you value agent-provisioned services, multi-plan billing, and not maintaining plumbing code — and you're fine on Nuxt + Supabase.",[11,1154,1155],{},"The real decision is framework lock-in versus stack compatibility, and setup speed versus customization safety.",[15,1157,1159],{"id":1158},"common-pitfalls-both-kits-cant-solve","Common Pitfalls Both Kits Can't Solve",[11,1161,1162],{},"No template writes your core features. Webhook debugging still takes time even with idempotent handlers. Boilerplate RLS policies get you started but you'll redesign them as your data model grows. And email deliverability — Resend, SendGrid, or SMTP — has failure modes no starter can eliminate. Starter kits end where product work begins.",[15,1164,1166],{"id":1165},"seo-production-readiness","SEO & Production Readiness",[11,1168,1169],{},"BoiledPlate ships JSON-LD, canonicals, and og:url out of the box, plus a prerendered Markdown blog. ShipFast focuses its SEO story on the landing page. The metrics that decide the outcome are bundle size, time-to-interactive, and deployment time — not how many components ship.",[15,1171,1173],{"id":1172},"the-agent-factor-why-it-matters-now","The Agent Factor: Why It Matters Now",[11,1175,1176,1177,1180],{},"Coding agents changed which part is slow. Writing the code got fast; keeping it consistent and correct across a real integration didn't. AGENTS.md contracts keep agents on-brand with your conventions, and deterministic patches let agents do what they're best at: repeatable, rule-based customization. When you evaluate any 2026 starter, ask whether it's built to work ",[882,1178,1179],{},"with"," Claude and Cursor — not around them.",[15,1182,1184],{"id":1183},"verdict-which-saves-you-the-most-time","Verdict: Which Saves You the Most Time?",[11,1186,1187,1189],{},[57,1188,676],{}," gets you to a visual MVP — landing page, basic auth, Stripe — in hours.",[11,1191,1192,1194,1195,1198],{},[57,1193,679],{}," gets you to a ",[882,1196,1197],{},"provisioned, billing-ready"," product: services wired, webhooks tested, RLS applied, in one setup session.",[11,1200,1201],{},"The honest answer: measure time-to-revenue, not time-to-landing-page. If your next step is a marketing page, ShipFast is fine. If it's live billing that survives EU law and duplicate webhooks, that's a different tool.",[15,1203,1205],{"id":1204},"what-to-do-right-now","What To Do Right Now",[285,1207,1208,1214,1225,1231],{},[288,1209,1210,1213],{},[57,1211,1212],{},"Comparing starters?"," Download both free versions, run the setup, and time your real deploy.",[288,1215,1216,1219,1220,1224],{},[57,1217,1218],{},"Care about webhook safety?"," Read up on why ",[26,1221,1223],{"href":101,"rel":1222},[30],"your success page shouldn't touch billing state"," before you pick anything.",[288,1226,1227,1230],{},[57,1228,1229],{},"Working with agents?"," Evaluate the AGENTS.md contract — lock-in through consistency beats lock-in through code.",[288,1232,1233,1236,1237,1242],{},[57,1234,1235],{},"Launching in the EU?"," Test your consent workflow before your first paying customer, not after your first complaint. The EU's ",[26,1238,1241],{"href":1239,"rel":1240},"https:\u002F\u002Feuropa.eu\u002Fyoureurope\u002Fcitizens\u002Fconsumers\u002Fshopping\u002Fguarantees-returns\u002Findex_en.htm",[30],"consumer withdrawal rules"," are not optional.",[11,1244,1245],{},"The stack was never the hard part. Choose the kit that pays down the plumbing.",{"title":403,"searchDepth":404,"depth":404,"links":1247},[1248,1249,1254,1259,1265,1270,1275,1281,1286,1287,1288,1289,1290,1291,1292],{"id":848,"depth":407,"text":849},{"id":855,"depth":407,"text":856,"children":1250},[1251,1252,1253],{"id":862,"depth":404,"text":863},{"id":869,"depth":404,"text":870},{"id":876,"depth":404,"text":877},{"id":888,"depth":407,"text":889,"children":1255},[1256,1257,1258],{"id":901,"depth":404,"text":902},{"id":908,"depth":404,"text":909},{"id":915,"depth":404,"text":916},{"id":927,"depth":407,"text":928,"children":1260},[1261,1262,1263,1264],{"id":931,"depth":404,"text":932},{"id":943,"depth":404,"text":944},{"id":950,"depth":404,"text":951},{"id":963,"depth":404,"text":964},{"id":970,"depth":407,"text":971,"children":1266},[1267,1268,1269],{"id":974,"depth":404,"text":975},{"id":981,"depth":404,"text":982},{"id":992,"depth":404,"text":993},{"id":999,"depth":407,"text":1000,"children":1271},[1272,1273,1274],{"id":1003,"depth":404,"text":1004},{"id":1014,"depth":404,"text":1015},{"id":1021,"depth":404,"text":1022},{"id":1033,"depth":407,"text":1034,"children":1276},[1277,1278,1279,1280],{"id":1037,"depth":404,"text":1038},{"id":1049,"depth":404,"text":1050},{"id":1056,"depth":404,"text":1057},{"id":1066,"depth":404,"text":1067},{"id":1073,"depth":407,"text":1074,"children":1282},[1283,1284,1285],{"id":1077,"depth":404,"text":1078},{"id":1089,"depth":404,"text":1090},{"id":1096,"depth":404,"text":1097},{"id":1103,"depth":407,"text":1104},{"id":1133,"depth":407,"text":1134},{"id":1158,"depth":407,"text":1159},{"id":1165,"depth":407,"text":1166},{"id":1172,"depth":407,"text":1173},{"id":1183,"depth":407,"text":1184},{"id":1204,"depth":407,"text":1205},"2026-09-06","ShipFast reviews show strong UI, but we compare the real plumbing: webhooks, refunds, row-level security. See where each wins for your launch.",{},"\u002Fblog\u002Fshipfast-reviews-honest-comparison",{"title":840,"description":1294},"blog\u002Fshipfast-reviews-honest-comparison",[449,1300,1301,1302],"saas-boilerplate","product-launch","developer-tools","Q4PpgO8pPBa8LSQemFXLN2iC-oz1VDxk1hgcQZCBCo8",{"id":1305,"title":1306,"author":6,"body":1307,"category":6,"date":1638,"description":1639,"draft":441,"extension":442,"image":6,"meta":1640,"navigation":444,"path":1641,"seo":1642,"stem":1643,"tags":1644,"__hash__":1647},"blog\u002Fblog\u002Fshipfast-repo-free-comparison.md","ShipFast Repo Free: Real Comparison vs Paid Alternatives",{"type":8,"value":1308,"toc":1618},[1309,1312,1315,1319,1326,1329,1331,1342,1345,1349,1352,1366,1369,1373,1376,1388,1391,1395,1402,1405,1411,1415,1438,1442,1445,1453,1462,1466,1469,1480,1482,1489,1497,1501,1504,1512,1516,1534,1537,1541,1544,1548,1551,1555,1558,1562,1565,1569,1572,1589,1592,1596,1599,1603,1615],[11,1310,1311],{},"Search \"shipfast repo free\" and you'll find tutorials promising a production SaaS in five minutes, forks of forks with stale READMEs, and forum threads arguing about whether the original is even worth $129. Underneath the noise is a real question founders are trying to answer: can a free repo actually get me to a shipped product, or does \"free\" just mean I do the hard part myself?",[11,1313,1314],{},"This is an honest comparison. ShipFast and BoiledPlate are both boilerplates, but they solve different halves of the problem and target different stacks. Here's what each actually gives you — and where the gaps hide.",[15,1316,1318],{"id":1317},"why-this-matters","Why This Matters",[11,1320,1321,1322,32],{},"Picking a framework is the easy part. Next vs. Nuxt, Firebase vs. Supabase — you can settle that debate in an afternoon by choosing what you already know. The ",[26,1323,1325],{"href":28,"rel":1324},[30],"framework is not what slows you down",[11,1327,1328],{},"What slows you down is the wiring between services: Stripe webhooks that survive retries, row-level security that isn't an afterthought, refund flows, EU consent, transactional email that sends exactly once. Free repos exist, but \"free\" often means the boilerplate structure is done and the plumbing — the part that eats weeks — is left as an exercise for you. Most comparisons skip this entirely and compare landing pages.",[15,1330,856],{"id":855},[11,1332,1333,1334,1337,1338,1341],{},"ShipFast started as a Next.js template for indie makers and grew into an ecosystem. The original is a paid one-time license (around $129), and there are numerous free clones circulating on GitHub — ",[261,1335,1336],{},"krishna-praveen\u002Fshipfast-template-1",", ",[261,1339,1340],{},"vietanhdev\u002Fshipfast",", and others — each with varying maintenance and no guarantee the upstream stays alive.",[11,1343,1344],{},"The short answer to \"is there a free ShipFast repo\": yes, there are free forks. But they're community mirrors, not the maintained original, and the original itself is not free. The audience has also shifted — from solo indie hackers toward AI-powered teams shipping generative AI products.",[15,1346,1348],{"id":1347},"what-free-shipfast-clones-actually-give-you","What Free ShipFast Clones Actually Give You",[11,1350,1351],{},"A typical free clone hands you:",[285,1353,1354,1357,1360,1363],{},[288,1355,1356],{},"A React\u002FNext.js project structure",[288,1358,1359],{},"An authentication scaffold — but you wire Stripe webhooks yourself",[288,1361,1362],{},"A blog template and basic styling",[288,1364,1365],{},"Deploy instructions that get a dev server running",[11,1367,1368],{},"What they don't give you: service provisioning, email infrastructure, AI agent integration, or deterministic patching. The documentation usually assumes you already know the boring part — the integration work between services. That assumption is the whole game.",[15,1370,1372],{"id":1371},"the-hidden-cost-of-ship-in-5-minutes","The Hidden Cost of \"Ship in 5 Minutes\"",[11,1374,1375],{},"Five minutes gets you a local dev server. It does not get you production.",[11,1377,1378,1379,1382,1383,1387],{},"The gap between ",[261,1380,1381],{},"npm run dev"," and a live product that takes money is where the weeks go. As we've ",[26,1384,1386],{"href":38,"rel":1385},[30],"written about wiring a Nuxt + Supabase + Stripe stack",", each service demands real work: Supabase RLS, Stripe webhooks, Google OAuth, and email that doesn't double-send. Webhook idempotency and refund flows are almost never templated. Multi-currency, EU VAT consent, and subscription state management are left to you.",[11,1389,1390],{},"Those are exactly the parts that prevent revenue loss — and exactly the parts a \"5 minute\" clone skips.",[15,1392,1394],{"id":1393},"boiledplates-different-approach","BoiledPlate's Different Approach",[11,1396,1397,1401],{},[26,1398,1400],{"href":392,"rel":1399},[30],"BoiledPlate"," is a different bet on a different stack: Nuxt + Supabase + Stripe, not Next.js + Firebase + Stripe.",[11,1403,1404],{},"The bigger difference is setup. Instead of you adapting to the boilerplate, the boilerplate adapts to you. Your coding agent interviews you — name, languages, theme, billing model — then reshapes the codebase with deterministic patches. In a single session it provisions services: Stripe products and webhooks, a Supabase database with RLS, Google sign-in.",[11,1406,1407,1408,1410],{},"An ",[261,1409,187],{}," contract ships with it, documenting one consistent way to access data and secrets so coding agents don't drift. And because updates arrive as deterministic patches, your customizations survive framework upgrades instead of dying in a merge conflict.",[15,1412,1414],{"id":1413},"side-by-side-what-gets-shipped","Side-by-Side: What Gets Shipped",[285,1416,1417,1423,1432],{},[288,1418,1419,1422],{},[57,1420,1421],{},"Free ShipFast clone",": UI boilerplate, auth skeleton, deploy instructions. You wire the rest.",[288,1424,1425,1431],{},[57,1426,1427],{},[26,1428,1430],{"href":326,"rel":1429},[30],"BoiledPlate Lite (free, MIT)",": The same app as the paid version — Nuxt 4, Supabase, Stripe, Resend — with RLS configured, email wired, and i18n in place. You wire it up by hand.",[288,1433,1434,1437],{},[57,1435,1436],{},"BoiledPlate Pro (€159 one-time)",": All of the above plus agent-driven setup, instant delivery via GitHub, and lifetime updates.",[15,1439,1441],{"id":1440},"the-webhook-architecture-gap","The Webhook Architecture Gap",[11,1443,1444],{},"This is where free repos quietly betray you. Many include a Stripe webhook endpoint but no idempotency. Refund flows are hardcoded or missing.",[11,1446,1447,1448,1452],{},"That matters because Stripe retries. A retry loop hitting a non-idempotent handler can turn one subscription into five charge records — or five actual side effects. BoiledPlate's webhooks are signature-verified and idempotent, so repeated deliveries don't duplicate charges or drop refunds. We wrote up the real design trade-offs in ",[26,1449,1451],{"href":164,"rel":1450},[30],"a Stripe webhook where some failures throw and some never do",", because delivery semantics are the product, not a detail.",[11,1454,1455,1456,1461],{},"Stripe's own ",[26,1457,1460],{"href":1458,"rel":1459},"https:\u002F\u002Fdocs.stripe.com\u002Fwebhooks",[30],"webhook documentation"," is explicit that endpoints must be idempotent. Templates that ignore that are handing you a landmine.",[15,1463,1465],{"id":1464},"ai-agent-integration-the-silent-feature","AI Agent Integration: The Silent Feature",[11,1467,1468],{},"With a free repo, every change a coding agent suggests requires manual review — the agent has no map of your conventions, so it guesses.",[11,1470,1471,1472,1474,1475,1479],{},"BoiledPlate's ",[261,1473,187],{}," defines how agents read database conventions, handle secrets, and apply patches. That means an agent can update the codebase without destroying your customizations. It's the difference between ",[26,1476,1478],{"href":191,"rel":1477},[30],"writing conventions for the agent"," and hoping the agent behaves. Paid templates tend to lock you in; free ones leave you doing manual patching forever. A documented contract is the third path.",[15,1481,138],{"id":137},[11,1483,1484,1485,32],{},"Most templates hardcode billing logic or skip the edge cases. BoiledPlate handles multi-plan subscriptions, proration, refunds, and consent laws — including things like a ",[26,1486,1488],{"href":151,"rel":1487},[30],"German withdrawal waiver encoded into the pay button",[11,1490,1491,1492,1496],{},"Supabase RLS prevents billing data from leaking across accounts, so you don't hand-roll row isolation. And Stripe webhooks are the ",[26,1493,1495],{"href":101,"rel":1494},[30],"source of truth for billing state"," — not the client-side success page a user might never reach.",[15,1498,1500],{"id":1499},"the-i18n-and-seo-difference","The i18n and SEO Difference",[11,1502,1503],{},"ShipFast clones ship English boilerplate; internationalization is an add-on project you scope later. BoiledPlate includes four languages from day one — not just translated strings, but routing.",[11,1505,1506,1507,1511],{},"On SEO, JSON-LD structured data and canonical URLs are handled, which sounds trivial until a malformed JSON-LD block ",[26,1508,1510],{"href":296,"rel":1509},[30],"returns 200 from curl and 500 in Chrome",". The blog is prerendered, not client-side rendered.",[15,1513,1515],{"id":1514},"open-source-vs-paid-the-real-trade-off","Open-Source vs. Paid: The Real Trade-Off",[285,1517,1518,1524,1529],{},[288,1519,1520,1523],{},[57,1521,1522],{},"Free ShipFast fork",": Learn by tinkering, maintain your own fork, deal with stale PRs and a possibly-vanishing upstream.",[288,1525,1526,1528],{},[57,1527,328],{},": Fork it, own it — but updates are manual merges.",[288,1530,1531,1533],{},[57,1532,679],{},": Instant GitHub delivery, deterministic updates, lifetime patches.",[11,1535,1536],{},"None of these are \"free forever\" if your time has value.",[15,1538,1540],{"id":1539},"when-free-repos-make-sense","When Free Repos Make Sense",[11,1542,1543],{},"Reach for a free clone when you're learning Next.js fundamentals, building a one-off where billing and scaling don't matter, working on a team with engineers dedicated to integration, or running a stack nothing like Nuxt + Supabase + Stripe. Match the repo to the stack you actually want to learn.",[15,1545,1547],{"id":1546},"when-boiledplate-pays-for-itself","When BoiledPlate Pays for Itself",[11,1549,1550],{},"BoiledPlate earns its keep when you're a founding team of one or two who need to ship fast and stay alive on billing, plan to iterate with Claude or other agents, are crossing borders (EU VAT, GDPR consent, multi-currency), want updates without merge conflicts, and are already comfortable with Supabase + Stripe.",[15,1552,1554],{"id":1553},"the-real-question-what-costs-more","The Real Question: What Costs More?",[11,1556,1557],{},"Three weeks of plumbing for a solo founder is €3,000–€6,000 in opportunity cost, easily. BoiledPlate Pro at €159 pays for itself if it ships you a month earlier. And a free repo plus two weeks of debugging that ends in \"I never launched\" is the most expensive option of all.",[15,1559,1561],{"id":1560},"stack-alignment-matters","Stack Alignment Matters",[11,1563,1564],{},"ShipFast lives in the Next.js\u002FReact\u002FFirebase world. BoiledPlate lives in the Nuxt\u002FVue\u002FSupabase world. Pick based on what your team already knows, not on marketing. Both are valid tools; the wrong stack choice costs more than either license.",[15,1566,1568],{"id":1567},"how-to-evaluate-for-your-situation","How to Evaluate for Your Situation",[11,1570,1571],{},"Ask yourself:",[285,1573,1574,1577,1580,1583,1586],{},[288,1575,1576],{},"Do you use Supabase, or are you willing to learn it?",[288,1578,1579],{},"Have you solved webhook idempotency before?",[288,1581,1582],{},"Do you want agent-driven setup or manual control?",[288,1584,1585],{},"Will you need post-launch updates without breaking customizations?",[288,1587,1588],{},"Is i18n a day-one requirement or a nice-to-have?",[11,1590,1591],{},"Your answers point clearly at one option or the other.",[15,1593,1595],{"id":1594},"the-honest-gaps-both-sides","The Honest Gaps (Both Sides)",[11,1597,1598],{},"BoiledPlate assumes Nuxt comfort — Next.js developers will struggle. Free ShipFast clones lack maintenance, and the original could change or disappear. Neither handles advanced needs like multi-tenancy, fine-grained permissions, or marketplace mechanics out of the box. And both require you to understand your stack, not escape it.",[15,1600,1602],{"id":1601},"what-to-do-next","What to Do Next",[11,1604,1605,1606,1610,1611,1614],{},"Clone a free ShipFast repo, spin it up locally, and note what breaks the moment you try to take real money. Then read ",[26,1607,1609],{"href":398,"rel":1608},[30],"BoiledPlate's blog"," to understand the integration philosophy and where the plumbing actually lives. Ask the one question that matters: ",[882,1612,1613],{},"will this still work when I need to pivot my billing model?"," That's the real test.",[11,1616,1617],{},"And budget time, not just money. Free plus your 100 hours was never cheap.",{"title":403,"searchDepth":404,"depth":404,"links":1619},[1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637],{"id":1317,"depth":407,"text":1318},{"id":855,"depth":407,"text":856},{"id":1347,"depth":407,"text":1348},{"id":1371,"depth":407,"text":1372},{"id":1393,"depth":407,"text":1394},{"id":1413,"depth":407,"text":1414},{"id":1440,"depth":407,"text":1441},{"id":1464,"depth":407,"text":1465},{"id":137,"depth":407,"text":138},{"id":1499,"depth":407,"text":1500},{"id":1514,"depth":407,"text":1515},{"id":1539,"depth":407,"text":1540},{"id":1546,"depth":407,"text":1547},{"id":1553,"depth":407,"text":1554},{"id":1560,"depth":407,"text":1561},{"id":1567,"depth":407,"text":1568},{"id":1594,"depth":407,"text":1595},{"id":1601,"depth":407,"text":1602},"2026-09-05","Compare free ShipFast repos with paid versions. Discover what's included, what's missing, and whether free boilerplates actually save you time.",{},"\u002Fblog\u002Fshipfast-repo-free-comparison",{"title":1306,"description":1639},"blog\u002Fshipfast-repo-free-comparison",[1300,449,1645,1646],"nextjs-template","startup-tools","Cm7S2UaRyIX991FkInVn7DNk5qWK4lHDovHuVSSS1Wo",1788742313768]