Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

API (Supabase)

Supabase local development environment with PostgreSQL, Auth, and API services.

Commands

bun start      # Start Supabase locally
bun stop       # Stop Supabase
bun status     # Show Supabase service status
bun reset      # Reset database and regenerate types
bun generate   # Generate TypeScript types
bun test       # Run database tests

For additional Supabase CLI commands and usage, see the official CLI reference.

Development

  1. bun start - Start Supabase
  2. Access Studio: http://localhost:54323
  3. bun generate - Update types after schema changes

Testing

bun test  # Run all database tests (requires Supabase running)

Test files in supabase/tests/ cover database schema, CRUD operations, RLS policies, and triggers.

Port Numbers

  • API: 54321
  • Database: 54322
  • Studio: 54323
  • Inbucket (Email): 54324

See the root README for complete setup instructions.