Skip to content

Commit fbbee83

Browse files
committed
docs(deploy-on-clever): improvements
1 parent 8baad66 commit fbbee83

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

src/content/docs/guides/deploy.mdx

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ import { Steps } from "@astrojs/starlight/components";
88
<WorkInProgress />
99
## Deploy on clever cloud
1010

11+
This guide explains how to deploy your start-ui-v3 project to Clever Cloud using the Clever Tools CLI.
12+
1113
<Steps>
12-
1. Create a Clever Cloud app:
14+
1. Create a new Clever Cloud application
1315

1416
- Go to the [Clever Console](https://console.clever-cloud.com/) and select your personal organization or the organization where you want to create your app.
1517

1618
- Click on "Create..." and select "an application".
19+
1720
![deploy-on-clever-1](@/assets/guides/deploy-on-clever/deploy-on-clever-1.png)
1821

1922

@@ -25,11 +28,11 @@ import { Steps } from "@astrojs/starlight/components";
2528
- Choose the recommended machine for your project, but you can edit it later.
2629
- Give a name to your app (description is optional).
2730

28-
2. Configure environment variables (_Replace every variables needed to adapt the project as yours (domain included)._):
31+
2. Configure environment variables *Replace all variables as needed to match your project (including your domain)*
2932

3033
- Go back to your project on the left bar and click on "Environment Variable".
31-
- Click on "Expert" at the top right.
32-
- Paste the template below and go back to "simple":
34+
- Click on the Expert tab at the top right.
35+
- Paste the environment variable template below, then switch back to the Simple view.
3336

3437
![deploy-on-clever-1](@/assets/guides/deploy-on-clever/deploy-on-clever-3.png)
3538

@@ -58,8 +61,12 @@ import { Steps } from "@astrojs/starlight/components";
5861
3. Deploy your app:
5962

6063
- Open a terminal in your project
61-
- Install the Clever Tools package globally with `npm install -g clever-tools`.
62-
- Log in to Clever Cloud with `clever login` (follow the instructions in the shell).
63-
- Copy the app ID at the top right of your project on the Clever Console and run `clever link {app_id}`.
64-
- Deploy your app with `clever deploy`.
64+
```bash
65+
npm install -g clever-tools
66+
clever login
67+
clever link <app_id>
68+
clever deploy
69+
```
6570
</Steps>
71+
72+
🎉 Your app is now live on Clever Cloud! You can view logs or redeploy anytime using clever logs and clever deploy.

0 commit comments

Comments
 (0)