supabase-prod-checklist
Installation
SKILL.md
Supabase Production Deployment Checklist
Overview
Actionable 14-step checklist for taking a Supabase project to production. Covers RLS enforcement, key separation, connection pooling (Supavisor), backups/PITR, network restrictions, custom domains, auth emails, rate limits, monitoring, Edge Functions, Storage policies, indexes, and migrations. Based on Supabase's official production guide.
Prerequisites
- Supabase project on Pro plan or higher (required for PITR, network restrictions)
- Separate production project (never share dev/prod)
@supabase/supabase-jsv2+ installed- Supabase CLI installed (
npx supabase --version) - Domain and DNS configured for custom domain
- Deployment platform ready (Vercel, Netlify, Cloudflare, etc.)
Instructions
Step 1: Enforce Row Level Security on ALL Tables
Related skills