Local-first · multi-database · deploy anywhere

Your whole backend.
In a few commands.

Database, REST API, auth with roles, file storage and realtime, on SQLite, Postgres or MySQL. Design it, test it in the built-in explorer, then ship it to a server you own with nightly backups we restore to prove they work.

$ npx crescodb init
✓ schema.cresco · config.json · cresco.db
$ cresco dev
REST API on :3000 · dashboard ready
$ cresco create auth
✓ auth/register.js · login.js · middleware.js · code you own
0 config
1 command to a live API
works with any language
3 databases, one API
Everything, from your data outward
A whole backend workflow, generated

Define your data once. CrescoDB builds the API, auth, dashboard and tooling around it, on whichever database you choose.

Auto REST API

Every model gets full CRUD, bulk insert, filtering and pagination. Zero manual routing, instant endpoints.

Schema from a sentence

Describe your data in plain English and get a clean, validated schema you review, edit and apply in one click.

Coding agent

An in-dashboard agent reads and writes your project's files and runs commands, with your approval, diffs, and undo.

Auth + RBAC

JWT login, roles (guest → admin), and per-table access policies enforced on every single request.

Full-code scaffolds

cresco create auth writes real, editable code: register.js, login.js, wired to your DB. Express & Next.js variants included.

Multi-database

SQLite by default; point at PostgreSQL or MySQL from day one. Same schema, same API, no swap at deploy.

File storage

Buckets for uploads: public or private, folders, a dashboard file browser, and an S3/R2 backend for production.

Realtime

Subscribe to live row changes over SSE using cresco.channel('posts').on('created', …), with per-row security respected.

Auto REST API

Define a model → get the endpoints

Add a model to schema.cresco and the full REST surface is live immediately. No controllers, no routing, no boilerplate.

  • Full CRUD per model: GET, POST, PUT, PATCH, DELETE
  • Filtering, sorting & pagination: ?where, ?limit, ?offset
  • Bulk insert and single-record routes out of the box
  • Consumable from any language over HTTP
Explore the API reference →
GET /posts
POST /posts
GET /posts/:id
PATCH /posts/:id
DELETE /posts/:id
// instant, no code. also ?where, ?limit, ?offset
Works with your coding agent

Your agent can actually operate this.

Connect Claude Code, Cursor or Codex with one command and they get typed access to the real thing: read your schema, change it, call the API they just generated, and check whether anything is exposed. A hosted backend can only be guessed at from the outside. There is also a built-in assistant if you would rather not leave the dashboard.

  • One command connects your agent (cresco mcp)
  • It reads your real schema, not a description you pasted
  • It can call your running API and read the actual response
  • Every command needs your approval; it runs locally
  • Or use the built-in assistant, included on every plan
Start building →
“Add a comments table linked to posts, and seed 5 rows.”
proposed Comment model (FK → posts)
wrote routes/comments.mjs
ran 5 INSERT statements
// review the diff · apply · or undo
Auth & RBAC

Real auth in one command

cresco create auth writes complete, editable auth code into your repo: register, login, middleware, wired to your database. Prefer a managed module? cresco add auth enables the built-in version with per-table RBAC.

  • JWT register / login / me, scrypt-hashed passwords
  • Roles: guest · user · mod · admin
  • Per-table access policies enforced on every request
  • Manage users & policies from the dashboard
  • GitHub & Google OAuth on the hosted platform
How auth & roles work →
guest read public
user create & edit own
mod moderate content
admin full access
// "access" per model:
read: "*", write: "user", delete: "admin"
Scaffolds & modules

Install features, not boilerplate

cresco create writes a feature as full code you own. Models merged into your schema, endpoints live immediately. cresco add installs managed, database-aware modules from the registry.

  • Scaffolds: auth, blog, payments. Real files, wired to your DB
  • Framework variants: --express and --next
  • Payments = Paystack + Flutterwave, dev-mode until you add keys
  • Smart schema merges that add missing models & fields, idempotent
  • Private @org registry on Team · marketplace coming soon
Browse scaffolds →
$ cresco create payments
✓ payments/providers.js · routes.mjs
✓ payments table merged into schema
✓ wired into cresco.routes.mjs
$ cresco create blog --next
✓ app/blog pages · posts + comments
Multi-database

Develop on your real DBMS, from day one

SQLite is the zero-config default for local and solo work. Ship on Postgres or MySQL? Point CrescoDB at it from the start. Same schema.cresco, same API, no SQLite-to-Postgres rewrite at deploy.

  • SQLite · instant, zero-config local default
  • PostgreSQL & MySQL · production-grade
  • One schema & API across every database
  • No deploy-time migration footgun
How the schema works →
SQLitePostgreSQLMySQL
// config.json
{ "db": "postgres://…" }
// same schema.cresco, same REST API
Pro dashboard

A real admin studio, local

Every project ships with a polished dashboard: browse and edit data, design your schema, run SQL, upload files, watch changes live, and manage users, all on your machine.

  • Data browser with inline edit & bulk actions
  • Visual schema editor + a full SQL editor
  • An API explorer that already found every endpoint
  • Storage file browser · live Realtime feed · request logs
  • Users & roles, access policies, migration log
See the dashboard →
Data browser
Schema editor
SQL editor
API Explorer
Storage
Realtime
Logs
Users & roles
Built for everyone who ships
From a weekend project to a whole org

The same instant backend, scaled to how you work: solo, in a team, or across an enterprise.

Individuals

Solo devs & side projects

Stop wiring boilerplate. Get a database, API, and auth in one command and spend your time building.

  • Free local dev, forever
  • SQLite, Postgres or MySQL
  • Auto REST API + dashboard
  • Auth & roles included
Start free
Startups & teams

Ship MVPs, then scale

Move from prototype to production without a rewrite. Add the coding agent and shared modules as you grow.

  • Built-in API explorer and SQL editor
  • Team workspaces & shared live projects
  • Postgres / MySQL in production
  • Cloud backups & higher AI limits
Start Pro
Enterprise

Scale & support

Our most capable coding model on every big task, unlimited cloud resources, and the support larger teams need.

  • Advanced model first, always
  • Highest AI limits
  • Unlimited backups & projects
  • Dedicated support & SLAs
Contact sales
What you can build
One backend, many shapes

SaaS products

Auth, roles, billing and multi-tenant data. cresco create auth + payments and you're most of the way there.

Internal tools

Admin panels and dashboards over your data, with a real UI from day one.

APIs & backends

Instant REST over any schema, a backend for your mobile or frontend app.

Prototypes & MVPs

Go from idea to a working demo in minutes, then grow it into production.

Everything included
No add-ons, no glue code

It all comes in the box: the workflow, not just a database.

Auto-generated REST API
CRUD, filtering & pagination
Bulk insert & relations
JWT auth & register/login
Role-based access control
Per-row security (RLS)
GitHub & Google OAuth
File storage (buckets, S3/R2)
Realtime subscriptions (SSE)
Request & query logs
Full-code scaffolds (auth · blog · payments)
Express & Next.js variants
JS client SDK (cresco-js)
SQLite, Postgres & MySQL
Production server (cresco start)
Visual schema editor
Full SQL editor
Self-discovering API explorer
Data browser & inline edit
Users, roles & migrations
Schema from a sentence
Coding agent (Pro and up)
Team workspaces & shared projects
Deploy to your own VPS
Automatic HTTPS certificates
DNS setup with checks
One-click rollback
Live CPU, memory & disk
Nightly backups, proven by restore
Downtime alerts (email · WhatsApp)
Webhooks & audit trail
From zero to API in a minute
Three commands
1

Init

Scaffold a project with cresco init. Schema, config, and a local SQLite DB.

2

Dev

Run cresco dev for an instant REST API on :3000 plus the dashboard.

3

Build

Scaffold features as real code, design schema with AI, and ship: cresco create auth, cresco ai.

When it stops being a side project
Ship it to a server you own

Point CrescoDB at any $5 VPS. It installs what it needs, builds your app, gets the HTTPS certificate, and keeps it running. Your data lives on your machine, and your bill is whatever you already pay for the box.

1

Connect

Paste one command into your server. CrescoDB sets up Docker and a locked-down deploy user, and never needs your root password again.

2

Deploy

cresco deploy --server web-1. It builds on the box, health-checks the result, and keeps the previous version so you can roll back.

3

Point a domain at it

We show you the exact DNS record to add, then check it for you. HTTPS is automatic, including behind Cloudflare.

And the part nobody else does

Every platform tells you "backup succeeded". That only ever means a file got written.

We restore your backup to prove it works

Every night, your database is snapshotted and then loaded into a throwaway database to check it actually restores. If it does not, you hear about it that morning, not during the outage.

We check you can roll back

A rollback is only real if the previous image is still on the server. We test it, without touching your live app or its data.

We tell you when it stops answering

A container that crashes and restarts forever looks healthy in every dashboard, because it just started. We watch the restart count and email you.

Pricing
Building is free. Paying starts when it matters.

Everything on your own machine is free forever, with no card. You pay when an app starts holding something you would hate to lose.

Free
$0

Unlimited local development, plus 1 app deployed to 1 server you own.

Pro
$23/mo

Nightly backups we prove restore, alerts when your app goes quiet, and the coding agent.

Team
$65/seat

Shared servers and projects so you are not the only one who can fix it, plus an audit trail.

Enterprise
$499/mo

Unlimited everything, 90 days of restore points, a named contact.

Questions developers actually ask
FAQ

What database is underneath, and is SQLite scalable?

SQLite is the zero-config default for local dev and read-heavy apps. For production scale you point CrescoDB at PostgreSQL or MySQL from day one and develop against it directly. Same schema, same API, no SQLite-to-Postgres rewrite at deploy.

I don't write Node. Can I still use it?

Yes. Your app talks to the auto-generated REST API over HTTP from any language (Python, Go, Rust, PHP, your frontend). You only need Node installed to run the CLI, the same way you'd need Docker to run a database container.

Is auth really one command?

cresco create auth writes complete, working auth into your repo: register.js, login.js, middleware you can read and edit, not a black box. Want it managed instead? cresco add auth enables the built-in module with per-table RBAC. Express and Next.js variants included.

How does the built-in assistant work?

Chat is included on every plan; the coding agent unlocks on Pro. Each plan comes with monthly Cresco tokens, and your dashboard shows your balance.

Is my code safe with the agent?

The agent is scoped to your project folder, every file edit shows a diff you can undo, and every terminal command needs your approval. It runs locally, on your machine.

Can I use it with my team?

Yes. Team plans (per seat) let you create shared workspaces where everyone works on the same live database, plus a private @org module registry. Enterprise adds our most capable model on every big task, unlimited cloud resources, and dedicated support.

I have never set up a server. Can I still deploy?

Yes, and this is the part we built for you specifically. You rent a $5 box from anywhere (Hetzner, DigitalOcean, Vultr), paste one command into it, and CrescoDB does the rest: Docker, a locked-down deploy user, the reverse proxy, the HTTPS certificate. When you add a domain, we show you the exact record to paste into Cloudflare or Namecheap, then check it for you and tell you what is wrong if it is not working. You do not need to learn Linux to use this.

What does the free plan actually let me do?

Everything on your own machine, forever, with no card: the database, the API, auth, storage, realtime, the dashboard, the scaffolds, and AI chat. On top of that you get one app deployed to one server. What free does not include is the part that runs while you sleep: automatic nightly backups and alerts when your app goes down.

What happens to my stuff if I stop paying?

Nothing stops. Your database is a file on a server you rent, your code is in your repo, and your app keeps serving traffic exactly as it is. You lose the nightly backups and the alerting, not the app. We never hold your data to make you stay.

What does "backups we prove restore" mean?

Most platforms call a backup successful when a file finishes writing. That tells you nothing about whether it works. We take the snapshot, then load it into a scratch database and check the tables are really there. If the restore fails, you get an email that morning, while you still have older copies to fall back on.

Build your backend in the next 60 seconds.

Free to start. No credit card. Works in any language: your app just talks to the API.

Featured on Launch Llama