Skip to content

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?

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 the openbase-coder CLI)
  • whoami — the signed-in email
  • account — balance, subscription, verification

Apps & deploys:

  • apps — list the apps you can access
  • open — open an app's URL in your browser
  • logs — read and tail app logs
  • ps (alias status) — an app's current stack status
  • config — an app's config vars
  • releases — recent deploy runs

Account-wide resources:

  • usage — this month's spend and limits
  • projects — your Openbase Cloud projects
  • workspaces — your cloud dev workspaces (devspaces)

Escape hatch:

  • coder — run any openbase-coder command through openbase 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.