Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cloud_docs/reference/cli/_generated/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cloud_docs/reference/cli/_generated/global_options.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
21 changes: 17 additions & 4 deletions cloud_docs/reference/cli/_generated/launch.md
Original file line number Diff line number Diff line change
@@ -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=<starter|growth> 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=<integer> 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.

Expand Down
Loading