Skip to content

Commit 02f2395

Browse files
committed
rewording
1 parent d1eacb6 commit 02f2395

File tree

7 files changed

+25
-26
lines changed

7 files changed

+25
-26
lines changed

docs/providers/gcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ sidebar_position: 3000
77
# GCP
88

99
:::info
10-
We will be working on GCP support in the future. If you are interested in GCP support, please vote on [this issue](https://github.com/DefangLabs/defang/issues/58).
10+
GCP support is coming soon to Defang!
1111
:::

docs/tutorials/deploy-container-using-the-cli.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Deploy pre-built container
2+
title: Deploy existing container
33
sidebar_position: 200
44
---
55

6-
# Deploy container using the CLI
6+
# Deploy an Existing Container Using the CLI
77

88
This example is useful if you already have a Docker container built manually or through a CI/CD system and have that the resulting image is available in a public or private repository accessible by Defang.
99

docs/tutorials/deploy-to-aws.mdx

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,20 @@ This tutorial will show you how to deploy your services to your own AWS account
1515
* [The Defang CLI](/docs/getting-started/installing)
1616
* [AWS Account Credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-authentication.html)
1717

18-
## Deploy your project to AWS
19-
20-
1. Navigate to the directory where your project is located:
18+
## Step 1 - Navigate to your project directory
19+
Head to the folder where your project is located.
2120
```bash
2221
$ cd path/to/your/project
2322
```
2423

25-
2. Authenticate Defang to use your AWS Account
26-
27-
Defang will look for your AWS credentials in your shell environment.
24+
## Step 2 - Authenticate Defang to use your AWS Account
2825

29-
Defang will expect to find one of the following credential sets:
26+
There are many ways to authenticate your [AWS account](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-authentication.html).
27+
Once you've done that, Defang will look for your AWS credentials in your shell environment and expect to find one of the following credential sets:
3028
* the `AWS_PROFILE` environment variable
3129
* or, the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables
3230

33-
3. Deploy
31+
## Step 3 - Deploy
3432

3533
Invoke the `defang up` CLI command with the `--provider=aws` flag or set the `DEFANG_PROVIDER=aws` environment variable.
3634

@@ -40,7 +38,7 @@ For example:
4038
$ defang up --provider=aws
4139
```
4240

43-
4. Inspect your deployment
41+
## Step 4 - Inspect your deployment
4442

4543
Defang will provision resources in your AWS account and deploy your services. You can inspect the resources created in your AWS dashboard.
4644

docs/tutorials/deploy-to-digitalocean.mdx

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,18 @@ This tutorial will show you how to deploy your services to your own Digital Ocea
1616
* [Digital Ocean Account Credentials](/docs/providers/digitalocean#getting-started)
1717
* [Digital Ocean Spaces Access Keys](/docs/providers/digitalocean#getting-started)
1818

19-
## Deploy your project to Digital Ocean
20-
21-
1. Navigate to the directory where your project is located:
19+
## Step 1 - Navigate to your project directory
2220
```bash
2321
$ cd path/to/your/project
2422
```
2523

26-
2. Authenticate Defang to use your Digital Ocean Account
27-
28-
Defang will look for your Digital Ocean credentials in your shell environment.
24+
## Step 2 - Authenticate Defang to use your Digital Ocean Account
2925

30-
Defang will expect to find the following credentials:
26+
Defang will look for your Digital Ocean credentials in your shell environment and expect to find the following credentials:
3127
* the `DIGITALOCEAN_TOKEN` environment variable
3228
* and, the `SPACES_ACCESS_KEY_ID` and `SPACES_SECRET_ACCESS_KEY` environment variables
3329

34-
3. Deploy
30+
## Step 3 - Deploy
3531

3632
Invoke the `defang up` CLI command with the `--provider=do` flag or set the `DEFANG_PROVIDER=do` environment variable.
3733

@@ -41,7 +37,7 @@ For example:
4137
$ defang up --provider=do
4238
```
4339

44-
4. Inspect your deployment
40+
## Step 4 - Inspect your deployment
4541

4642
Defang will provision resources in your Digital Ocean account and deploy your services. You can inspect the resources created in your Digital Ocean dashboard.
4743

docs/tutorials/deploy-to-gcp.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ sidebar_position: 10
77
# Deploying to Google Cloud Platform (GCP) with Defang
88

99
Coming soon!
10+
11+
---
12+
13+
For a deeper discussion of the Defang GCP Architecture, see our [GCP docs](/docs/providers/gcp).
14+

docs/tutorials/deploy-to-your-cloud.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ description: Defang allows you deploy to your own cloud account.
44
sidebar_position: 10
55
---
66

7-
# Deploying to your cloud with Defang
7+
# Deploying to Your Cloud With Defang
88

99
This tutorial will show you how to deploy your services to your own cloud account using Defang.
1010

11-
::: tip
12-
::: Defang makes it easier to deploy to any cloud—in your *own* cloud accounts. We refer to this as bring-your-own-cloud (BYOC).
11+
:::tip
12+
Defang makes it easier to deploy to any cloud—in your *own* cloud accounts. We refer to this as bring-your-own-cloud (BYOC).
13+
If you aren't ready to deploy to your own cloud account, you can use the Defang Playground to get a feel for how Defang works for free.
1314
:::
14-
::: If you aren't ready to deploy to your own cloud account, you can use the Defang Playground to get a feel for how Defang works for free.
1515

1616
## Choose your cloud
1717

docs/tutorials/generate-new-code-using-ai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy an outline using AI
33
sidebar_position: 50
44
---
55

6-
# Deploy an outline using AI
6+
# Deploy an Outline of a Project Using AI
77

88
Defang supports generating new project outlines using integration with an AI model. Using this feature, you can describe what you would like the service to do and the CLI will then generate a project outline with all the files required to make it work.
99
<iframe width="560" height="315" src="https://www.youtube.com/embed/afglsBYieuc?si=GCvHhBu3H9ktMDHA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

0 commit comments

Comments
 (0)