You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/04-get-started/02-quickstart.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,28 +81,30 @@ If the agent fails to reload the app, you can always hit the `R` key to force a
81
81
82
82
## Deploy the app to the cloud
83
83
84
-
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.
84
+
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.
85
85
86
-
Install the Serverpod Cloud command line tools:
86
+
Create your Cloud account on the **[Serverpod Cloud Console](https://console.serverpod.cloud/)**, then install the Serverpod Cloud command line tools:
87
87
88
-
```txt
89
-
$ dart install serverpod_cloud_cli
88
+
```bash
89
+
$ dart pub global activate serverpod_cloud_cli
90
90
```
91
91
92
-
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:
92
+
From your project's root folder, launch your app:
93
93
94
-
```txt
94
+
```bash
95
95
$ scloud launch
96
96
```
97
97
98
-
After the project has been uploaded for the first time, use the `deploy` command whenever you make changes to your project:
98
+
This creates the Cloud project, provisions a database, and deploys your backend along with the web build of your app.
99
99
100
-
```txt
100
+
After the first launch, redeploy changes with:
101
+
102
+
```bash
101
103
$ scloud deploy
102
104
```
103
105
104
106
:::tip
105
107
106
-
In the Serverpod Cloud console, open Serverpod Insights to view server logs, CPU usage, and other information.
108
+
In the **[Serverpod Cloud Console](https://console.serverpod.cloud/)**, open Serverpod Insights to view server logs, CPU usage, and other information.
0 commit comments