"Deploy" is one word for five jobs: hosting, a database, authentication, HTTPS, and a way to ship updates. Here is what each one means, and the shortcut that turns all five into one command.
| Job | Traditional answer | On Benmore |
|---|---|---|
| Hosting | VPS, container platform, or PaaS | Included, per-app subdomain |
| Database | Managed Postgres/MySQL, connection strings | Included, per-app, migrations automatic |
| Auth | Auth provider SDK + integration work | Included: email, OTP, OAuth, MFA, roles |
| HTTPS | Certificates, renewals, redirects | Automatic, custom domains too |
| Shipping updates | CI/CD pipeline | Push source, verify activation, then promote dev to prod |
brew install Benmore-Studio/benmore/benmore-cli
benmore login
benmore deploy
On Linux or CI, replace the Homebrew line with curl -fsSL https://benmore.ai/install-cli.sh | sh.
From any Benmore app directory, that creates the app on first run, ships supported app source, and returns a live URL on a hosted dev instance. Iterate against the live URL, then benmore promote to production and benmore domain for your own domain. The full walkthrough is in deploying from your terminal.
If the app does not exist yet, connect an external AI client to Benmore over MCP and describe it, or start with benmore new and the CLI. Starting from a spreadsheet? That is its own guide. Starting from code an AI wrote? That one too.
After deployment, inspect logs, verify the real browser journey, and require clean source synchronization. Dev and prod keep separate databases and secrets; promotion moves source and applies migrations with backup safeguards. Source history can restore files, but it cannot undo data changes or external effects. Database restore is a separate recovery operation. Read the release and recovery guide.
The open-source framework can also run outside Benmore hosting, without a platform account. Follow the self-hosting guide to operate a Linux service with your own domain, HTTPS, persistent secrets, backups, and upgrades.
Deploy your first app free