DEV Community

Cover image for Next.js + Supabase: The Free-Tier Stack I Use to Ship Client Sites Fast
Adiela Sam Ogide
Adiela Sam Ogide

Posted on

Next.js + Supabase: The Free-Tier Stack I Use to Ship Client Sites Fast

I ship client sites fast on a simple free-tier stack: Next.js for the app, Supabase for database/auth/storage (a real Postgres database with a generous free tier — 500MB DB, 1GB storage, 50K monthly active users — instead of hand-rolling my own server and auth system), and Vercel for git-push deploys with automatic preview URLs I send straight to clients for review; the one thing most "free-tier stack" posts skip is that Vercel's Hobby plan is licensed for non-commercial use only, so I build and stage for free but move to Vercel Pro ($20/month) the moment a client site goes live and starts taking payments, and I set an uptime ping on Supabase so a quiet review week doesn't trigger their 7-day auto-pause.
I wrote this up because I kept seeing "free-tier stack" posts that skip the part where a client site actually going live changes the terms — and I'd rather share the version that would've saved me a conversation with a client than the version that looks tidier on paper.

Top comments (1)

Collapse
 
adiela_samogide_d22803bf profile image
Adiela Sam Ogide

I wrote this up because I kept seeing "free-tier stack" posts that skip the part where a client site actually going live changes the terms — and I'd rather share the version that would've saved me a conversation with a client than the version that looks tidier on paper.