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
20 changes: 11 additions & 9 deletions docs/04-get-started/02-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,28 +81,30 @@ If the agent fails to reload the app, you can always hit the `R` key to force a

## Deploy the app to the cloud

To deploy your app to Serverpod Cloud, you will need to create an account and set up a new project in Serverpod Cloud. Head to the **[Serverpod Cloud Console](https://console.serverpod.cloud/)** and follow the instructions there. You get a 1-month free trial. No credit card required.
Deploy your app to **[Serverpod Cloud](/cloud)**, a fully managed platform built by the Serverpod team. Your first project includes a one-month free trial, with no credit card required.

Install the Serverpod Cloud command line tools:
Create your Cloud account on the **[Serverpod Cloud Console](https://console.serverpod.cloud/)**, then install the Serverpod Cloud command line tools:

```txt
$ dart install serverpod_cloud_cli
```bash
$ dart pub global activate serverpod_cloud_cli
```

With the Serverpod Cloud project set up and the CLI tools installed, you can deploy your backend and web app using the `scloud launch` command:
From your project's root folder, launch your app:

```txt
```bash
$ scloud launch
```

After the project has been uploaded for the first time, use the `deploy` command whenever you make changes to your project:
This creates the Cloud project, provisions a database, and deploys your backend along with the web build of your app.

```txt
After the first launch, redeploy changes with:

```bash
$ scloud deploy
```

:::tip

In the Serverpod Cloud console, open Serverpod Insights to view server logs, CPU usage, and other information.
In the **[Serverpod Cloud Console](https://console.serverpod.cloud/)**, open Serverpod Insights to view server logs, CPU usage, and other information.

:::
2 changes: 1 addition & 1 deletion docs/08-deployments/01-deploy-to-serverpod-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Cloud manages the production infrastructure for you:

You deploy with the `scloud` CLI:

1. Install the `scloud` CLI.
1. Install the `scloud` CLI with `dart pub global activate serverpod_cloud_cli`.
2. Run `scloud launch`. It creates the Cloud project, provisions a database if you enable one, and deploys your server.
3. Set any app secrets (API keys, OAuth credentials) with `scloud password set`.

Expand Down
Loading