Skip to content

Commit dd2240d

Browse files
authored
Merge pull request #128 from DefangLabs/linda-docs-3
More docs improvements
2 parents 6775996 + 5c1c193 commit dd2240d

16 files changed

+45
-38
lines changed

docs/concepts/authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Authentication
44
description: Authenticating with Defang.
55
---
66

7-
# Authenticating with Defang
7+
# Authentication
88

9-
To do pretty much anything with Defang, you'll need to authenticate with the platform. You can do this by running the following command:
9+
To do pretty much anything with Defang, you'll need to authenticate with the system. You can do this by running the following command:
1010

1111
```bash
1212
defang login

docs/getting-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ You can open the folder in your favorite editor and see the files that were gene
106106
* The `Dockerfile` is used to build the container image for your service.
107107
* The `compose.yaml` file is used to define the services you want to deploy.
108108

109-
## Deploy to the playground
109+
## Deploy to the Playground
110110

111111
Go back to your shell and type the following:
112112

@@ -122,7 +122,7 @@ Please visit http://127.0.0.1:49154 and log in. (Right click the URL or press EN
122122
```
123123

124124
:::info
125-
To learn more about how authentication works in Defang, check out the [Authenticating With Defang](/docs/concepts/authentication) page.
125+
To learn more about how authentication works in Defang, check out our [Authentication](/docs/concepts/authentication) page.
126126
:::
127127

128128
When you do this, you should see something similar to the output below:

docs/intro/what-is-defang.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ description: What is Defang?
88

99
<iframe width="560" height="315" src="https://www.youtube.com/embed/afglsBYieuc?si=iKgUX4ejz7AixxqQ" 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 style={{marginBottom: "2rem"}}></iframe>
1010

11-
Defang is a radically simpler way for developers to develop, deploy, and debug their cloud applications. Defang enables you to easily author cloud application in any language, build and deploy to the cloud with a single command, and iterate quickly with AI-assisted tooling.
11+
Defang is a radically simpler way for developers to develop, deploy, and debug their cloud applications. Defang enables you to easily author cloud applications in any language, build and deploy to the cloud with a single command, and iterate quickly with AI-assisted tooling.
1212

13-
- The [Defang CLI](/docs/getting-started#install-the-defang-cli.md) includes an AI-driven agent that translates natural language prompts to an outline for your project that you can then refine.
14-
- Defang can automatically build and deploy your project with a single command.
15-
- If you’re new to Defang, you can try deploying to the [Defang Playground](/docs/concepts/defang-playground.md), a hosted environment to learn to use Defang with non-production workloads.
16-
- Once you’re ready, you can [deploy](/docs/concepts/deployments.md) it to your own cloud account - we call this [Defang BYOC](/docs/concepts/defang-byoc.md). Defang takes care of all the heavy lifting such as configuring networking, security, [observability](/docs/concepts/observability.md) and all the other details that usually slow down the average cloud developer.
17-
- You can also use Defang to easily [publish updates](/docs/concepts/deployments.md#deploying-updates) to your deployed application with zero downtime.
13+
- Develop: The [Defang CLI](/docs/getting-started#install-the-defang-cli.md) includes an AI-driven agent that translates natural language prompts to [generate](/docs/concepts/generate) an outline for your project that you can then refine.
14+
- Deploy: Defang can automatically build and deploy your project with a single command.
15+
- If you’re new to Defang, you can try deploying to the [Defang Playground](/docs/concepts/defang-playground.md), a testing environment for learning how to use Defang.
16+
- Once you’re ready, you can [deploy](docs/category/tutorials) a project to your own cloud account - we call this [Defang BYOC](/docs/concepts/defang-byoc.md). Defang takes care of all the heavy lifting such as configuring networking, security, [observability](/docs/concepts/observability.md) and all the other details that usually slow down the average cloud developer.
17+
- You can also use Defang to easily [publish updates](/docs/concepts/deployments.md#deploying-updates) to your deployed application with zero downtime.
18+
- Debug: Once you've deployed, you can use our AI agent to help [debug](/docs/concepts/debug) your cloud applications, using your service logs and project files to help you identify and resolve issues.

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 existing container
2+
title: Deploy Existing Containers
33
sidebar_position: 200
44
---
55

6-
# Deploy an Existing Container Using the CLI
6+
# Deploy Existing Containers
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Defang allows you deploy to your own Amazon Web Services (AWS) acco
44
sidebar_position: 11
55
---
66

7-
# Deploying to Amazon Web Services (AWS) With Defang
7+
# Deploy to Amazon Web Services (AWS)
88

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

docs/tutorials/deploy-to-digitalocean.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Defang allows you deploy to your own DigitalOcean account.
44
sidebar_position: 11
55
---
66

7-
# Deploying to DigitalOcean With Defang
7+
# Deploy to DigitalOcean
88

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

docs/tutorials/deploy-to-gcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Defang allows you deploy to your own Google Cloud Platform (GCP) ac
44
sidebar_position: 11
55
---
66

7-
# Deploying to Google Cloud Platform (GCP) With Defang
7+
# Deploy to Google Cloud Platform (GCP)
88

99
This tutorial is coming soon.
1010

docs/tutorials/deploy-to-playground.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Deploy to Playground
3-
description: Deploy to the Free Defang Playground
3+
description: Deploy to the free Defang Playground.
44
sidebar_position: 15
55
---
66

7-
# Deploy to the playground
7+
# Deploy to Playground
88

9-
This tutorial will show you how to deploy your project to the Defang Playground.
9+
This tutorial will show you how to deploy your project to the free Defang Playground.
1010

1111
## Pre-requisites
1212
* [A Dockerfile in your project](https://docs.docker.com/get-started/docker-concepts/building-images/writing-a-dockerfile/)
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
---
2-
title: Deploy to Your Cloud
2+
title: Deploy to Your Own Cloud
33
description: Defang allows you deploy to your own cloud account.
44
sidebar_position: 10
55
---
66

7-
# Deploying to Your Cloud With Defang
7+
# Deploy to Your Own Cloud
88

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

1111
:::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.
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)](/docs/concepts/defang-byoc).
13+
If you aren't ready to deploy to your own cloud account, you can use the [Defang Playground](/docs/concepts/defang-playground) to get a feel for how Defang works for free.
1414
:::
1515

16-
## Choose your cloud
16+
## Choose your cloud
1717

18-
The first step is to choose which cloud provider you want to deploy to. Defang supports the following cloud providers:
18+
A good starting point is to choose which cloud provider you want to deploy to. Defang supports the following cloud providers:
1919

2020
* [AWS](/docs/tutorials/deploy-to-aws)
2121
* [DigitalOcean](/docs/tutorials/deploy-to-digitalocean)
2222
* [GCP](/docs/tutorials/deploy-to-gcp)
23+
24+
The above will link to a tutorial page for that cloud. If you run into any problems, please note that we have an [FAQ section](/docs/category/faq) for your convenience.

docs/tutorials/deploy-using-pulumi.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploy using Pulumi
2+
title: Deploy Using Pulumi
33
sidebar_position: 400
44
---
55

0 commit comments

Comments
 (0)