Openbase Cloud CLI¶
openbase is the command line for Openbase Cloud —
a Heroku-style tool and a fast alternative to the web dashboard. Sign in once,
then manage and inspect your apps, deploys, config, usage, and projects from the
terminal. It speaks only HTTPS to the Openbase Cloud API and needs no AWS
credentials.
These docs cover the openbase CLI and the Openbase Cloud PaaS workflow it
drives — connecting a repo, pushing to deploy, and reading app state. For the
voice-first coding product (desktop app, iPhone app, agents, devspaces), see the
separate Openbase Coder docs.
Which Page Do I Need?¶
- Installing and signing in for the first time → Getting Started
- The full command list → Commands
- Environment variables, default app, JSON output → Configuration
- Deploying an app to Openbase Cloud → Getting Started
Quick Start¶
pip install openbase-cli # provides the `openbase` command
# or: uv tool install openbase-cli
openbase login # shared sign-in (via openbase-coder)
openbase apps # list your apps
openbase logs -a my-app --tail # stream logs
openbase ps -a my-app # current status
What You Can Do¶
Account:
login/logout— shared Openbase Cloud sign-in (delegated to theopenbase-coderCLI)whoami— the signed-in emailaccount— balance, subscription, verification
Apps & deploys:
apps— list the apps you can accessopen— open an app's URL in your browserlogs— read and tail app logsps(aliasstatus) — an app's current stack statusconfig— an app's config varsreleases— recent deploy runs
Account-wide resources:
usage— this month's spend and limitsprojects— your Openbase Cloud projectsworkspaces— your cloud dev workspaces (devspaces)
Escape hatch:
coder— run anyopenbase-codercommand throughopenbase coder <args>
Relationship to Openbase Coder¶
openbase and openbase-coder are sibling CLIs that share one login. Sign-in
and devspace/agent features live in openbase-coder; openbase login simply
runs openbase-coder login and both tools read the same
~/.openbase/auth.json. Devspaces and the coding agents are documented in the
Openbase Coder docs; this site stays focused on
the Openbase Cloud PaaS.