Skip to content

Instantly share code, notes, and snippets.

@dninomiya
Last active May 10, 2024 08:29
Show Gist options
  • Save dninomiya/c85178574f0262fc69e5865c05e62e40 to your computer and use it in GitHub Desktop.
Save dninomiya/c85178574f0262fc69e5865c05e62e40 to your computer and use it in GitHub Desktop.
supabase-commands
"supabase:start": "bunx supabase start",
"supabase:stop": "bunx supabase stop",
"supabase:status": "bunx supabase status",
"supabase:restart": "npm run supabase:stop && npm run supabase:start",
"supabase:reset": "bunx supabase reset",
"supabase:link": "bunx supabase link",
"supabase:generate-types": "bunx supabase gen types typescript --local --schema public > types/database.ts",
"supabase:generate-migration": "bunx supabase db diff | bunx supabase migration new",
"supabase:generate-seed": "bunx supabase db dump --local --data-only -f supabase/seed.sql",
"supabase:push": "bunx supabase db push",
"supabase:pull": "bunx supabase pull"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment