A Next.js app backed by a local Supabase stack (Postgres + Auth) in Docker, with Drizzle ORM for the schema.
- pnpm — the only supported package manager
- Docker, running (the local Supabase stack runs in containers)
Set up environment variables before your first run.
pnpm install # deps + the Supabase CLI
pnpm db:start # boot the local Supabase stack (Docker) + write .env.local
pnpm db:push # apply the schema to the local db
pnpm dev # serve the appOpen http://localhost:3000. Edit pages under app/; they
hot-reload on save.
See Remote development.