Quickback Stack
The complete Supabase alternative on Cloudflare. Auth, storage, realtime, queues, vector search, admin UI — all running on your own Cloudflare account.
Quickback Stack is the runtime services that surround your compiled API. While the Quickback Compiler generates your routes and security policies, the Stack is everything else you need to ship a real application — auth, storage, realtime, queues, an admin UI, an account UI — all on your own Cloudflare account.
What you get
| Component | Service | Purpose |
|---|---|---|
| Auth | Better Auth | Email/OTP, passkeys, organizations, admin |
| Storage | KV, R2 | Sessions, cache, files |
| Realtime | Durable Objects | WebSocket for live updates |
| Queues | Cloudflare Queues | Background jobs, webhook delivery |
| Vector & AI | Workers AI | Embeddings, semantic search |
| Webhooks | Hono + Queues | Signed inbound, retried outbound |
| Quickback CMS | Embedded SPA | Schema-driven admin UI |
| Account UI | Embedded SPA | Login, profile, orgs, admin |
Architecture
┌─────────────────────────────────────────────────────────────┐
│ Cloudflare Edge │
├─────────────────────────────────────────────────────────────┤
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ Workers │ │ Durable │ │ KV │ │
│ │ (API/CMS) │ │ Objects │ │ (Cache) │ │
│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
│ │ │ │ │
│ ┌──────┴──────┐ ┌──────┴──────┐ ┌──────┴──────┐ │
│ │ D1 │ │ Realtime │ │ R2 │ │
│ │ (or Neon) │ │ (WebSocket)│ │ (Storage) │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
│ │
│ ┌─────────────┐ ┌─────────────────────────────────┐ │
│ │ Queues │ │ Better Auth │ │
│ │ (Background)│ │ (Email OTP, Passkeys, etc.) │ │
│ └─────────────┘ └─────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────┘Your account, your data
Everything in Quickback Stack runs on your own Cloudflare account:
- Workers — your deployments, your logs
- Storage — your KV namespaces, your R2 buckets
- Secrets — your API keys, in your Wrangler secrets
Quickback provides the architecture and the code generation. You own the infrastructure.
Quick start
# Scaffold + compile interactively
mkdir my-app && cd my-app
npx @quickback-dev/cli start
# Deploy to your Cloudflare account
npm i -g wrangler
wrangler deploystart handles scaffold, login (only when needed), and the first compile in one shot. The deploy step uses your own wrangler auth and ships everything to your Cloudflare account.
See also
- Quickback Compiler — the build tool that generates your API
- Quickback for Hono API — what the compiler outputs
- Definitions — the security model the Stack runs