Supabase Local Development
This skill should be used when the user asks to "start supabase locally", "set up local supabase", "run supabase dev", "initialize supabase project", "configure local database", "start local postgres", "use supabase CLI", "generate database types", or needs guidance on local Supabase development, Docker setup, environment configuration, or database migrations.
What this skill does
# Supabase Local Development ## Overview Supabase Local Development provides a complete local Postgres database with all Supabase services (Auth, Storage, Edge Functions, Realtime) running in Docker containers. This enables offline development, faster iteration, and safe database migrations before deploying to production. **Key benefits:** - Full Supabase stack running locally - Faster development without network latency - Safe migration testing before production - Automatic TypeScript type generation - Environment variable management ## Skill-scoped Context **Official Documentation:** - Local Development Guide: https://supabase.com/docs/guides/local-development - CLI Getting Started: https://supabase.com/docs/guides/local-development/cli/getting-started - supabase init: https://supabase.com/docs/reference/cli/supabase-init - supabase start: https://supabase.com/docs/reference/cli/supabase-start - supabase status: https://supabase.com/docs/reference/cli/supabase-status - supabase db: https://supabase.com/docs/reference/cli/supabase-db - Managing Environments: https://supabase.com/docs/guides/deployment/managing-environments ## Prerequisites ### Docker Runtime Supabase local development requires a Docker-compatible container runtime: - **Docker Desktop** (macOS, Windows, Linux) - **Rancher Desktop** (macOS, Windows, Linux) - **OrbStack** (macOS) - Recommended for Apple Silicon - **Podman** (macOS, Windows, Linux) Verify Docker is running: ```bash docker info ``` ### Supabase CLI Install via npm (recommended for Next.js projects): ```bash npm install -g supabase ``` Or via Homebrew (macOS): ```bash brew install supabase/tap/supabase ``` Verify installation: ```bash supabase --version ``` ## Workflow ### Step 1: Initialize Supabase Project ```bash supabase init ``` This creates a `supabase/` directory with: - `config.toml` - Local configuration - `seed.sql` - Optional seed data - `migrations/` - Database migrations ### Step 2: Start Local Services ```bash supabase start ``` First run downloads Docker images (~2GB). Subsequent starts are faster. Services started: | Service | Local URL | Purpose | |---------|-----------|---------| | API | http://127.0.0.1:54321 | REST/GraphQL API | | Studio | http://127.0.0.1:54323 | Database UI | | Inbucket | http://127.0.0.1:54324 | Email testing | | Database | postgresql://127.0.0.1:54322 | Direct Postgres | ### Step 3: Get Environment Variables ```bash supabase status -o env ``` Output: ``` SUPABASE_URL=http://127.0.0.1:54321 SUPABASE_ANON_KEY=eyJ... SUPABASE_SERVICE_ROLE_KEY=eyJ... SUPABASE_DB_URL=postgresql://postgres:[email protected]:54322/postgres ``` ### Step 4: Configure Next.js Environment Add to `.env.local`: ```bash # Supabase Local Development NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321 NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJ... SUPABASE_SERVICE_ROLE_KEY=eyJ... ``` **Note:** `NEXT_PUBLIC_` prefix exposes variables to the browser. ### Step 5: Generate TypeScript Types ```bash supabase gen types typescript --local > lib/supabase/database.types.ts ``` Regenerate after schema changes. ## Environment Variables ### Client-Side (Browser) Prefix with `NEXT_PUBLIC_`: ``` NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321 NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJ... ``` ### Server-Side Only No prefix required: ``` SUPABASE_SERVICE_ROLE_KEY=eyJ... SUPABASE_DB_URL=postgresql://... ``` ### Environment File Detection | Framework | File | Priority | |-----------|------|----------| | Next.js | `.env.local` | 1st | | Next.js | `.env.development.local` | 2nd | | Generic | `.env` | 3rd | | Cloudflare Workers | `dev.vars` | Special | ## Database Migrations ### Create Migration from Local Changes ```bash supabase db diff -f migration_name ``` ### Apply Migrations Locally ```bash supabase db reset ``` ### Push to Remote Database ```bash supabase db push ``` ### Link to Remote Project ```bash supabase link --project-ref YOUR_PROJECT_REF ``` ## Type Generation ### From Local Database ```bash supabase gen types typescript --local > lib/supabase/database.types.ts ``` ### From Remote Database ```bash supabase gen types typescript --project-id YOUR_PROJECT_ID > lib/supabase/database.types.ts ``` ### Usage in Code ```typescript import { createClient } from "@supabase/supabase-js"; import type { Database } from "@/lib/supabase/database.types"; const supabase = createClient<Database>( process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY! ); ``` ## Common Commands Reference | Command | Purpose | |---------|---------| | `supabase init` | Initialize new project | | `supabase start` | Start local services | | `supabase stop` | Stop local services | | `supabase status` | Show service status | | `supabase status -o env` | Output as environment variables | | `supabase db reset` | Reset database and apply migrations | | `supabase db diff -f name` | Create migration from changes | | `supabase db push` | Push migrations to remote | | `supabase gen types typescript --local` | Generate types from local | | `supabase link --project-ref REF` | Link to remote project | ## Troubleshooting ### Docker Not Running ```bash # macOS - Start Docker Desktop open -a Docker # Linux - Start Docker daemon sudo systemctl start docker ``` ### Port Conflicts If ports are in use: ```bash supabase stop --no-backup supabase start ``` Or configure different ports in `supabase/config.toml`. ### Reset Everything ```bash supabase stop --no-backup supabase start supabase db reset ``` ## Best Practices **DO:** - Always use `supabase db diff` for migrations - Regenerate types after schema changes - Use `.env.local` for local credentials (gitignored) - Test migrations locally before pushing to production **DON'T:** - Commit local Supabase credentials - Modify production database directly - Skip local testing for migrations - Use service role key in client-side code
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.