home / skills / constellos / claude-code / supabase-local-dev

This skill helps you set up and run Supabase locally with Docker, generate types, and manage migrations for offline development.

npx playbooks add skill constellos/claude-code --skill supabase-local-dev

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
6.2 KB
---
name: Supabase Local Development
description: 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.
version: 0.1.0
---

# 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

Overview

This skill helps you set up and run a full Supabase stack locally using the Supabase CLI and Docker. It guides initialization, starting services, environment configuration, TypeScript type generation, and safe local migration workflows. Use it to iterate quickly, test migrations, and mirror production behavior offline.

How this skill works

The skill inspects your project for a supabase/ directory and guides you through supabase init to create config, migrations, and seed files. It uses supabase start to launch Postgres, Auth, Storage, Studio, and other services in Docker and extracts environment variables via supabase status -o env. It also automates TypeScript type generation from the local database and shows commands to create, apply, reset, and push migrations.

When to use it

  • When you need a full local Supabase stack for development and testing
  • Before applying database migrations to production to verify behavior
  • When configuring environment variables for Next.js or server code
  • To generate or regenerate TypeScript types from your local schema
  • When troubleshooting port conflicts, Docker issues, or service status

Best practices

  • Keep local credentials in .env.local (gitignored) and never commit service role keys
  • Use supabase db diff to create migrations and test them locally before pushing
  • Regenerate types after any schema change with supabase gen types
  • Prefer a Docker runtime compatible with your platform (Docker Desktop, Rancher, OrbStack, or Podman)
  • Link to a remote project only when you’ve verified migrations locally

Example use cases

  • Initialize a new project: run supabase init then supabase start to boot local services
  • Add a schema change: modify tables, run supabase db diff -f name, then supabase db reset to apply locally
  • Generate TS types: supabase gen types typescript --local > lib/supabase/database.types.ts and import into createClient
  • Configure Next.js: add NEXT_PUBLIC_SUPABASE_URL and NEXT_PUBLIC_SUPABASE_ANON_KEY to .env.local and keep service keys server-side
  • Recover from Docker or port conflicts: supabase stop --no-backup, free ports or edit supabase/config.toml, then supabase start

FAQ

What Docker runtimes are supported?

Use Docker Desktop, Rancher Desktop, OrbStack (recommended on Apple Silicon), or Podman. Verify with docker info.

How do I get local environment variables?

Run supabase status -o env to print SUPABASE_URL, ANON and SERVICE_ROLE keys, and SUPABASE_DB_URL for your .env files.