Clicbase today: the whole backend, delivered turnkey
A full rundown of what's available on Clicbase: Postgres database, REST API, auth + Google login on your domain, storage, realtime, edge functions, @yourdomain email, dockerization, backups, Supabase migration, and Claude compatibility.
Clicbase brings together in a single platform everything a web product needs on the server side, the database, the API, authentication, files, realtime, functions, and even email under your brand. Here's what's available today, feature by feature.
The idea behind Clicbase is simple: you build the front end, we handle the entire backend. Not just the database, but also the building blocks most platforms leave you to wire up by hand, email on your domain, Google login on your subdomain, realtime. All of it managed, secured, and Claude-compatible.
In short
- A dedicated, isolated PostgreSQL database per project, with an automatically generated REST API.
- Authentication via email + Google, RLS, and an included auth domain (
auth.yoursite.com). - Storage, realtime, edge functions, and scheduled tasks.
- Real @yourdomain mailboxes: SPF, DKIM, DMARC, anti-spam, webmail, and a BIMI logo.
- Self-service dockerization, daily backups, and Supabase migration with no password resets.
- Claude-compatible via MCP.
The database, the API, and your data
🗄️ Dedicated PostgreSQL, isolated per project (Available)
Each project gets its own PostgreSQL database, in its own space, with no neighbors. You get all of Postgres: tables, views, functions, constraints, extensions, indexes. The isolation is real, which matters for data privacy (GDPR) and for security.
⚡ Automatically generated REST API (Available)
Create a table and its REST API is ready, with an anon key (public, subject to RLS) and a service key (server-side). Filtering, sorting, and pagination all go straight through the URL.
GET /db/ma-base/produits?prix=lt.50&order=nom
Header: apikey: <clé-anon>
🧮 SQL editor & table editor (Available)
Explore and edit your data right from the dashboard: a SQL editor (with saved queries) and a visual table editor (search, sort, insert, delete, create tables). No external tools to install.
Authentication & security
🔐 Email + Google auth (Available)
Sign-up and sign-in with email/password, or via Google. Password reset included. Every login returns a token you reuse to call the API on behalf of the user.
await fetch('/db/ma-base/auth/signup', {
method: 'POST',
body: JSON.stringify({ email, password })
})
// → renvoie un token, déjà soumis à la RLS
🔗 Included auth domain (Available)
Google login runs on your subdomain, something like auth.yoursite.com, with automatic SSL. Your users see your brand during login, not a generic URL.
🛡️ Row Level Security (RLS) (Available)
Postgres row-level security ensures each user only sees their own data. The rule is enforced at the heart of the database, not in your code, so it can't be bypassed from the front end.
🗝️ Secrets vault (Available)
Your API keys and credentials (Stripe, PayPal…) are encrypted with AES-256 and stored per project. Never in plain text, never exposed, never committed. Your edge functions can read them securely.
Realtime, files, and functions
🔄 Realtime (Available)
Subscribe your interface to database changes, live, over a WebSocket connection. Chat, notifications, presence, dashboards that refresh themselves, with no realtime server to manage.
const ws = new WebSocket('wss://clicbase.com/db/ma-base/realtime')
ws.onmessage = (e) => {
const { table, type, record } = JSON.parse(e.data)
afficherEnDirect(record)
}
📦 Storage (Available)
Store files and images in public or private buckets, served over HTTPS. Perfect for product photos and avatars.
await fetch('/db/ma-base/storage/v1/object/avatars/moi.png', {
method: 'POST',
headers: { Authorization: 'Bearer ' + token },
body: fichier
})
🧩 Edge Functions (Available)
Serverless functions right next to your database: SQL access, reading from the secrets vault, sending email. Ideal for payment webhooks or custom processing.
⏰ Scheduled tasks (Available)
Automate recurring jobs directly in Postgres (cron): cleanups, reports, follow-ups. No external orchestrator to plug in.
Email on your domain
This is one of the big differences with Clicbase: email is treated as a real backend building block, not as an option you wire up somewhere else.
✉️ @yourdomain mailboxes + webmail (Available)
Real addresses on your domain, for example [email protected], to receive and send, with webmail included. Your transactional emails come from your brand, not from a generic "no-reply."
🛡️ SPF, DKIM, DMARC & anti-spam (Available)
Deliverability is configured for you: SPF declares the authorized servers, DKIM signs every message, DMARC governs failures, and an anti-spam (rspamd) filters incoming mail. This is the technical part that makes the difference between "delivered" and "spam."
🎨 BIMI logo in the inbox (Available)
With BIMI, your logo shows up next to your emails in supported inboxes, a mark of brand and trust.
Why it matters, An email that arrives from your own address, properly authenticated, lands in the primary inbox and inspires confidence. Misconfigured, it ends up in spam. Clicbase handles all the plumbing.
Infrastructure & operations
🐳 Self-service dockerization (Available)
Isolate a project in its own Docker container (dedicated PostgreSQL) in one click, with a zero-downtime migration. You can then reserve dedicated resources for it (CPU/RAM limits applied on the fly) so a load spike doesn't spill over onto the others.
💾 Daily backups (Available)
Every database is backed up automatically every day (pg_dump), including dockerized projects. Data safety isn't optional.
↔️ Migration from Supabase (Available)
Import a Supabase project automatically: schema, data, accounts, storage, and realtime. Your users keep their passwords, no forced reset.
🖥️ Connect your own VPS (BYO) (In progress)
Soon you'll be able to attach your server to Clicbase via a lightweight agent: enrollment and monitoring are already in place, remote project deployment comes next.
Claude-compatible
🤖 Connect to Claude via MCP (Available)
Connect your database to Claude in a single call (MCP + API) and ask it, in plain language, to create tables, write queries, or manage your data. The AI works directly on your backend.
The summary table
| Building block | What you get | Status |
|---|---|---|
| Database | Dedicated PostgreSQL, isolated per project | Available |
| API | Auto REST, anon/service keys, URL filters | Available |
| Auth | Email + Google, RLS, included auth domain | Available |
| Storage | Public/private buckets over HTTPS | Available |
| Realtime | WebSocket subscription to changes | Available |
| Functions | Serverless + SQL and secrets access | Available |
| @yourdomain mailboxes, SPF/DKIM/DMARC, BIMI, webmail | Available | |
| Secrets | AES-256 encrypted vault | Available |
| Operations | Dedicated Docker, daily backups | Available |
| Migration | Supabase import with no password resets | Available |
| AI | Claude-compatible (MCP) | Available |
| BYO VPS | Attach your own server (agent) | In progress |
That's the state of the platform today, and it keeps moving forward. The best way to judge is to try it on your own use case.
Create a free account, or migrate your existing Supabase in a few minutes.
Launch your backend in minutes
Postgres database, API, auth, storage, realtime, plus your emails and domain. Free to start.