diff --git a/cloud_docs/reference/cli/_generated/deploy.md b/cloud_docs/reference/cli/_generated/deploy.md index 7acb9712..dacc8779 100644 --- a/cloud_docs/reference/cli/_generated/deploy.md +++ b/cloud_docs/reference/cli/_generated/deploy.md @@ -14,6 +14,8 @@ Usage: scloud deploy [arguments] --show-files Display the file tree that will be uploaded. -o, --output Save the deployment zip file to the specified path. Must end with .zip + --[no-]await Await the deployment to finish while showing status progression. + (defaults to on) --dart-version Overrides the Dart SDK version to use for building the project. Run "scloud help" to see global options. diff --git a/cloud_docs/reference/cli/_generated/global_options.md b/cloud_docs/reference/cli/_generated/global_options.md index 435ca263..963edac3 100644 --- a/cloud_docs/reference/cli/_generated/global_options.md +++ b/cloud_docs/reference/cli/_generated/global_options.md @@ -27,7 +27,7 @@ Available commands: version Prints the version of the Serverpod Cloud CLI. Getting started - launch Guided launch of a new Serverpod Cloud project. + launch Common command to launch and deploy Serverpod Cloud projects. Management auth Manage user authentication. diff --git a/cloud_docs/reference/cli/_generated/launch.md b/cloud_docs/reference/cli/_generated/launch.md index 8527fadc..26616904 100644 --- a/cloud_docs/reference/cli/_generated/launch.md +++ b/cloud_docs/reference/cli/_generated/launch.md @@ -1,18 +1,31 @@ ## Usage ```console -Guided launch of a new Serverpod Cloud project. +Common command to launch and deploy Serverpod Cloud projects. + +If there already is a Serverpod Cloud project near the current directory +it will redeploy the project (upload, build, and rollout in the cloud). + +Otherwise it will guide you through setting up a new Serverpod Cloud project. + Usage: scloud launch [arguments] -h, --help Print this usage information. +-p, --project The ID of the project. --plan= Selects the plan to use. --[no-]enable-db Flag to enable the database for the project. --[no-]deploy Flag to immediately deploy the project. --dart-version Overrides the Dart SDK version to use for building the project. -Project - --project The ID of an existing project to use. - --new-project The ID of a new project to create. +Deployment options +-c, --concurrency= Number of concurrent files processed when zipping the project. + (defaults to "5") + --dry-run Do not actually deploy, just print the deployment steps. + --show-files Display the file tree that will be uploaded. +-o, --output Save the deployment zip file to the specified path. Must end with + .zip + --[no-]await Await the deployment to finish while showing status progression. + (defaults to on) Run "scloud help" to see global options.