What databases does Ardent support?
What databases does Ardent support?
Postgres — including Supabase, AWS RDS, Neon, and self-hosted. More databases coming soon.
How long does it take to create a branch?
How long does it take to create a branch?
Under 6 seconds, regardless of database size. The initial connector setup takes longer depending on data size, but after that every branch is instant.
Does branching affect my production database?
Does branching affect my production database?
No. Ardent uses logical replication to sync your data. Your production database is never written to or modified.
What happens to idle branches?
What happens to idle branches?
They auto-suspend after 5 minutes of inactivity. When you reconnect, they spin back up instantly.
Can I use branches with AI agents?
Can I use branches with AI agents?
Yes. Create a branch and pass the connection URL to Claude Code, Cursor, or any agent. They can read, write, and run migrations without touching production.Ardent generates a unique connection string for each branch — your real database credentials are never exposed. If a branch URL is ever compromised, your production data stays safe because the branch connection string has no access to the original database. An LLM will never see or have access to your real credentials.
Do branches stay in sync with production?
Do branches stay in sync with production?
Branches are created from a continuously synced replica of your production database. Once a branch is created, it’s a snapshot from that point — changes you make on the branch are isolated.
How many branches can I create?
How many branches can I create?
As many as you need. Branches are lightweight copy-on-write forks — they only use additional storage for data you change.
Does my team share branches?
Does my team share branches?
What Postgres features work on branches?
What Postgres features work on branches?
Everything. Branches are full Postgres databases — extensions, triggers, RLS, functions, all of it.
Can I build this myself?
Can I build this myself?
Yes. You’d need to set up logical replication (WAL configuration, replication slots, schema drift, failure recovery — database replication is a nightmare), build a branching engine, build a connection proxy that routes to the right branch, handle auto-suspend and resume, manage credential isolation, and build a CLI on top of all of it. We’ve spent thousands of engineering hours building and maintaining this infrastructure. Ardent gives you all of it in one
npm install.Is my production data safe?
Is my production data safe?
Yes — see our Security page for full details.
Still have questions?
Contact us
Reach out at [email protected] — we’re happy to help.