status
The scloud status deploy
command lets you view deployments and build logs.
To see the status of the most recent deployment, run the base command:
scloud status deploy
To see all recent deployments, pass the --list
flag:
scloud status deploy --list
This list includes the deployment identifiers, which can be used to see the status of a specific deployment:
scloud status deploy <id>
For convenience, deployment attempts can also be identified by a simple integer, where 0 is the most recent, 1 the one before that, and so on, as shown in the first column of the deployment list:
scloud status deploy 1
To see the build log of a deployment attempt, use the --build-log
flag:
scloud status deploy --build-log # most recent
scloud status deploy <id> --build-log # specific deployment
Usage
Show status information.
Usage: scloud status <subcommand> [arguments]
-h, --help Print this usage information.
Available subcommands:
deploy Show the deploy status.
Run "scloud help" to see global options.
See the full documentation at: https://docs.serverpod.cloud/references/cli/commands/status
Sub commands
deploy
Show the deploy status.
Usage: scloud status deploy [arguments]
-h, --help Print this usage information.
-p, --project (mandatory) The ID of the project.
Can be omitted for existing projects that are linked. See `scloud
project link --help`.
--limit=<integer> The maximum number of records to fetch.
(defaults to "10")
-u, --[no-]utc Display timestamps in UTC timezone instead of local.
--deploy=<<uuid|integer>> View a specific deployment, with uuid or sequence number, 0 for
latest. Can be passed as the first argument.
(defaults to "0")
-l, --list List recent deployments.
-b, --build-log View a deployment's build log, or latest by default.
--output-overall-status View a deployment's overall status as a single word, one of:
success, failure, awaiting, running, cancelled, unknown.
Run "scloud help" to see global options.
See the full documentation at: https://docs.serverpod.cloud/references/cli/commands/status