Every project gets a dedicated Postgres database, authentication, file storage and instant REST APIs — on its own subdomain, in under two minutes. Your existing Supabase client libraries work unchanged.
import { createClient } from '@supabase/supabase-js'
const db = createClient(
'https://your-project-ref.aidb.uk',
'your-anon-key'
)
const { data } = await db.from('todos').select('*')
Four building blocks, one project, zero plumbing.
A full, dedicated Postgres database for every project — not a shared schema. Real SQL, extensions, row-level security, and a direct connection string when you want it.
Manage tables, run queries and browse data in the built-in Studio.
Email and password sign-up, secure sessions and JWTs out of the box, powered by GoTrue. Confirmation and reset emails are sent for you.
Combine with row-level security so users can only ever see their own rows.
Upload and serve files — avatars, images, documents — with per-bucket access rules tied to your auth users.
On-the-fly image resizing built in: request any width and get back an optimised image.
Every table you create is instantly available over a RESTful API, generated straight from your schema by PostgREST. Filters, joins and pagination included.
No ORMs to configure, no endpoints to write.
aidb.uk speaks the same protocol as Supabase. Point
@supabase/supabase-js (or the Python, Dart or Swift clients) at your
project URL and everything just works — queries, auth, storage uploads.
Create a free account, click “New project”, and start building.
Start your project