Pre-wired · Drop-in · Ships today

Auth and billing you don't have to debug.

Production-tested patterns from a SaaS that's been live for months. Lemon Squeezy webhooks that actually verify. RLS policies that handle edge cases. Admin endpoints that don't leak service-role keys.

Get Forge StackSee the demo →

14-day refund · MIT-style license · Updates included

Launch pricing active · Refund within 14 days, no questions

Works with

Claude Code · Cursor · Codex

The starter ships with patterns your AI agent can extend — no special config needed.

Everything you need to take the first payment.

🔐

Auth

Supabase email/password auth with SSR cookies, confirmation callback, and reusable clients.

💳

Billing

Lemon Squeezy checkout, signature-verified webhook, and is_pro flag — no Stripe required.

🛡️

Admin

Email allowlist, dashboard endpoints, service-role separation, RLS examples.

🖼️

OG Images

Edge runtime, route segments not query params, Satori gotchas worked around.

📱

PWA

Manifest, service worker, installable shell, and safe-area-ready viewport metadata.

🔔

Toasts & Modals

Production-tested patterns. SSR-safe. Theme-aware.

📊

Analytics

Vercel Analytics mounted with a typed custom-event helper.

🚨

Sentry

Optional client, server, and edge configuration with signed-in user context.

What you get when you buy.

📊

6 /vs pages

Side-by-side comparisons with ShipFast, Supastarter, MakerKit, TurboStarter, Vercel templates, and "build from scratch."

🔁

14-day refund

Full refund, no questions asked. Email me and it's done.

📦

Lifetime updates

Push to your repo when we ship. New features, security patches, framework upgrades.

See it in production.

Not a tutorial repo. FitForge runs on this exact stack.

FitForge marketing homepage — production SaaS running on this stack
fitforgehq.com — the public-facing SaaS this stack powers
FitForge admin feedback dashboard — service-role authenticated, view user feedback and mark as resolved
Admin dashboard — service-role auth, RLS bypass, real user feedback

Drop it in. Ship.

Production-tested patterns you'll actually use on day one.

src/app/api/ls/webhook/route.ts
import crypto from 'node:crypto';
import { createClient } from '@supabase/supabase-js';

export async function POST(req: Request) {
  const signingSecret = process.env.LEMONSQUEEZY_WEBHOOK_SECRET!;
  const sig = req.headers.get('x-signature');
  if (!sig) return new Response('no signature', { status: 400 });

  const raw = await req.text();
  const expected = crypto
    .createHmac('sha256', signingSecret)
    .update(raw).digest('hex');

  if (!crypto.timingSafeEqual(
    Buffer.from(sig.toLowerCase()),
    Buffer.from(expected)
  )) return new Response('mismatch', { status: 400 });

  const { meta: { event_name }, data } = JSON.parse(raw);

  // Verified — write to Supabase, grant product access, etc.
  const supabase = createClient(
    process.env.NEXT_PUBLIC_SUPABASE_URL!,
    process.env.SUPABASE_SERVICE_ROLE_KEY!
  );
  await supabase.from('lemon_events').insert({
    event_name, object_id: data.id, received_at: new Date().toISOString(),
  });
  return Response.json({ received: true, event: event_name });
}

HMAC signature-verified Lemon Squeezy webhook. No Stripe, no SDK — just crypto and a Supabase insert.

Forge Stack is the same stack FitForge runs on.

Not sure yet? See how Forge Stack compares.

Honest side-by-side comparisons. Same template, same data sources — pick the one closest to your stack.

vs ShipFastIndie boilerplate, $199vs SupastarterAI-agent optimized, $299vs MakerKit4-year incumbent, $349vs TurboStarterWeb + mobile + extension, $249vs Vercel templatesFree, but boilerplatevs build from scratchThe honest baseline

Pick your tier.

Personal

$99 one-time
  • Unlimited personal projects
  • Email support
  • Lifetime updates
View Personal
MOST POPULAR

Indie

$249 one-time
  • 1 commercial product
  • <$50K revenue
  • Email support
  • 1 year of updates
View Indie

Team

$499 one-time
  • Unlimited products
  • <$500K revenue
  • Priority support
  • Lifetime updates
View Team
COMING SOON

Agency

$999 one-time
  • White-label rights
  • Resell to clients
  • Direct Slack channel
  • Lifetime updates
Notify me

All tiers include the full source code. 14-day refund, no questions asked.

Common questions.

What's the actual license?

MIT-style with a tier clause: Personal is non-commercial. Indie allows 1 commercial product. Team allows unlimited under $500K revenue. Agency allows white-label resale. See LICENSE.md in the repo for full text.

Will it work with my Supabase project?

Yes. Run the included migrations, set your env vars, deploy. Schema is intentionally minimal — you add your own tables for your product.

Do you provide support?

Yes. Email support is included. Higher tiers receive priority response times; support covers the starter itself, not custom app development.

What if I want a refund?

14 days, full refund, no questions. Just email me.

Will you keep updating it?

Yes. Next.js 15, Supabase SSR, Lemon Squeezy are all current as of July 2026. I push updates monthly.

Can I see it before buying?

The demo page links to FitForge, the production app that supplied the patterns, and includes live links for the starter login, signup, pricing, legal pages, and generated OG image.