supabase-deploy-integration
Installation
SKILL.md
Supabase Deploy Integration
Overview
Deploy and manage Supabase projects in production with confidence. This skill covers the full deployment lifecycle: pushing database migrations, deploying Edge Functions, managing secrets, executing zero-downtime rollouts with blue/green database branching, rolling back failed migrations, and verifying deployment health. All commands use the Supabase CLI with --project-ref for explicit project targeting.
SDK: @supabase/supabase-js — supabase.com/docs
Prerequisites
- Supabase CLI installed (
npm install -g supabaseornpx supabase) - Supabase project linked (
npx supabase link --project-ref <your-ref>) - Database migrations in
supabase/migrations/directory - Edge Functions in
supabase/functions/directory (if deploying functions) SUPABASE_ACCESS_TOKENset for CI/non-interactive environments
Instructions
Step 1 — Push Database Migrations and Deploy Edge Functions
Related skills