npx create-supabase@latest my-project

Build in a weekend.
Scale to millions.

The open source Firebase alternative with a Postgres database, authentication, real-time subscriptions, storage, and edge functions — all in one platform.

Start your project →
SQL Editor Table Editor
-- Fetch active users with their subscription status
SELECT u.id, u.email, u.created_at,
       s.plan_name, s.status
FROM users u
LEFT JOIN subscriptions s
  ON s.user_id = u.id
WHERE s.status = 'active'
ORDER BY u.created_at DESC
LIMIT 100;
Results (3 rows)
idemailcreated_atplan_namestatus
a3f2...alice@example.com2026-01-15Proactive
b7c1...bob@example.com2026-02-03Teamactive
c9d4...carol@example.com2026-02-20Freeactive

Everything you need to build a product

A complete backend platform that lets you ship faster without compromising on flexibility or control.

🗄️

Postgres Database

Every project gets its own dedicated Postgres database with full SQL access, row-level security, and automatic backups. psql ready from day one.

🔐

Authentication

Ready-to-go auth with email/password, magic links, OAuth providers (Google, GitHub, Apple), and SSO for enterprise teams.

Real-time Subscriptions

Listen to database changes in real time using PostgreSQL's logical replication. Build collaborative apps, live dashboards, and more.

🚀

Edge Functions

Deploy serverless TypeScript/JavaScript functions globally with Deno. Run custom business logic close to your users at the edge.

Start your project today

Free tier includes 50,000 monthly active users and 500MB of database storage. No credit card required.

Start your project →