supabase-deploy-integration

Solid

Deploy and manage Supabase projects in production. Covers database migrations, Edge Functions deployment, secrets management, zero-downtime rollouts, blue/green branching, rollback procedures, and post-deploy health checks. Use when deploying Supabase to production, running migrations, deploying Edge Functions, managing secrets, or implementing zero-downtime deployments. Trigger: "deploy supabase", "supabase migration push", "deploy edge function", "supabase rollback", "supabase blue green", "supabase health check".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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](https://supabase.com/docs) ## Prerequisites - Supabase CLI installed (`npm install -g supabase` or `npx 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_TOKEN` set for CI/non-interactive environments ## Instructions ### Step 1 — Push Database Migrations and Deploy Edge Functions Apply pending database migrations to your production project, then deploy Edge Functions with their required secrets. **Database migrations:** ```bash # Apply all pending migrations to production npx supabase db push --project-ref $PROJECT_REF # Preview what will run without applying (dry run) npx supabase db push --project-ref $PROJECT_REF --dry-run # Check current migration status npx supabase migration list --project-ref $PROJECT_REF ``` Each migration file in `supabase/migrations/` is applied in timest...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

API & Backend Listed

supabase

Manage Supabase projects, databases, migrations, Edge Functions, and storage using the `supabase` CLI.

335 Updated today
aiskillstore
API & Backend Solid

supabase-cli

This skill should be used when user asks to "use supabase CLI", "supabase init", "supabase start", "run migrations", "deploy edge functions", "manage Supabase project", or works with the supabase command-line tool for local development and project management.

711 Updated 2 days ago
fcakyon
AI & Automation Solid

supabase-ci-integration

Configure Supabase CI/CD pipelines with GitHub Actions: link projects, push migrations, deploy Edge Functions, generate types, and run tests against local Supabase instances. Use when setting up CI pipelines for Supabase, automating database migrations, deploying Edge Functions in CI, or running integration tests. Trigger with phrases like "supabase CI", "supabase GitHub Actions", "supabase deploy pipeline", "CI supabase migrations", "supabase preview branches".

2,266 Updated today
jeremylongshore
API & Backend Solid

supabase-migration-deep-dive

Database migration patterns with Supabase CLI: npx supabase migration new, zero-downtime migrations, data backfill strategies, schema versioning, rollback strategies, and type generation. Use when creating database migrations, performing zero-downtime schema changes, backfilling data in production, managing schema versions, or planning rollback strategies. Trigger: "supabase migration", "supabase schema change", "supabase zero downtime", "supabase rollback", "supabase db push", "supabase migration new".

2,266 Updated today
jeremylongshore
AI & Automation Solid

supabase-prod-checklist

Execute Supabase production deployment checklist covering RLS, key hygiene, connection pooling, backups, monitoring, Edge Functions, and Storage policies. Use when deploying to production, preparing for launch, or auditing a live Supabase project for security and performance gaps. Trigger with "supabase production", "supabase go-live", "supabase launch checklist", "supabase prod ready", "deploy supabase", "supabase production readiness".

2,266 Updated today
jeremylongshore