CLI
Deploy
Deploy your app and monitor deployment status with the Buildspace CLI.
Push a Deploy
buildspace deployPushes 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 deployCheck Deployment Status
buildspace deploy statusShows recent deployments for both dev and prod environments.
Options
| Flag | Description |
|---|---|
--app <slug> | Target app (default: resolved from git or active app) |
--env dev|prod | Filter to a single environment |
--limit <n> | Number of deployments to show (default: 10, max: 100) |
--all | Show up to 100 deployments |
--json | Output result as JSON |
View Deployment Logs
buildspace deploy logs --latest
buildspace deploy logs --deployment <id>Options
| Flag | Description |
|---|---|
--env dev|prod | Target environment (default: dev) |
--latest | Show 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>.