Buildspace
CLI

Deploy

Deploy your app and monitor deployment status with the Buildspace CLI.

Push a Deploy

buildspace deploy

Pushes your current HEAD to origin/main, which triggers a dev deployment. Run this from inside the cloned app repository after committing your changes.

Typical flow:

git add -A
git commit -m "Ship feature"
buildspace deploy

Check Deployment Status

buildspace deploy status

Shows recent deployments for both dev and prod environments.

Options

FlagDescription
--app <slug>Target app (default: resolved from git or active app)
--env dev|prodFilter to a single environment
--limit <n>Number of deployments to show (default: 10, max: 100)
--allShow up to 100 deployments
--jsonOutput result as JSON

View Deployment Logs

buildspace deploy logs --latest
buildspace deploy logs --deployment <id>

Options

FlagDescription
--env dev|prodTarget environment (default: dev)
--latestShow logs for the most recent deployment
--deployment <id>Show logs for a specific deployment ID
--limit <n>Max number of log lines (default: 200)

You must specify either --latest or --deployment <id>.

On this page