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.


Replies
Supabase
SiteForge - AI Website Wireframer
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.