Supabase - The Postgres developer platform is now generally available

by
After a 4 year beta period, Supabase is now Generally Available. Companies such as GitHub & PWC rely on Supabase to host and manage their backends. So, whether you’re an indie hacker or a Fortune 500 company, Supabase now scales to any workload.

Add a comment

Replies

Best
During the first year of Supabase we set ourselves a goal: build a managed service capable of running 1 million databases with performance, stability, and security as our three pillars. After a couple of years we were happy that we’d successfully built out infrastructure and a team capable of achieving that goal. We slowly started to phase out the “beta” messaging and set ourselves a more ambitious goal. We dreamed of building the backend for every application on the web. This required us to expand on the tooling we'd built around Postgres offering into products like Auth, Realtime, Vector and more. The promise of Supabase today is that you can spin up a complete backend in a weekend and scale it up to millions of users, all without leaving the Supabase dashboard. Supabase is, and always will be, free to start and fully open source. We have an extensive collection of client side libraries and SDKs for every developer ecosystem. Regardless of whether you're building for web, mobile, or data science you'll find that Supabase is a quick and painless way to store and access your data. Come and share with us something you’ve built with Supabase!
congratulations on making supabase generally available. scaling from a beta to a platform that supports such high-profile clients is no small feat. with your expanded toolset around postgres, what are some of the most unexpected use cases you've witnessed so far?

I used Supabase as the backend for an AI agent I built — the agent generates structured documents, and I needed somewhere to keep every run: the output, the result, the metadata. It made that almost embarrassingly quick. I created a Postgres table in a couple of minutes, and the moment it existed I had a REST API for it — no backend code to write, nothing to deploy. I wired it into my app with a URL and a key dropped into two environment variables, and every run started saving itself. Pulling any past result back was a single query.

What sold me is that it gives you a real database — proper Postgres, not a toy — plus the API, auth, and row-level security, on a genuinely usable free tier. For anyone building and shipping side projects, that combination is rare.

Honest notes: free projects pause after a spell of inactivity (they wake in about a minute), and you'll spend ten minutes learning row-level security the first time — both minor. It's the fastest way I've found to give a project a real database and an API without standing up a backend. I keep reaching for it.