Skip to content

Commit 4ab2dc0

Browse files
authored
Merge pull request #145 from DefangLabs/linda-dashboard
More grammar fixes
2 parents 8f135e1 + ffb63f8 commit 4ab2dc0

15 files changed

+40
-36
lines changed

blog/2023-06-29-Announcing-the-Private-Beta-for-the-DOP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We realize that improving on this state of affairs is a long journey. Today, we
1212

1313
**Try the Private Beta!**
1414

15-
To try the Private Beta, please go to [portal.defang.dev](https://portal.defang.dev) and register. We would love to have you kick the tires and give us your feedback! You can also check out our [documentation](https://docs.defang.io/docs/intro), [samples](https://docs.defang.io/docs/intro), and our [Github repository](https://github.com/DefangLabs).
15+
To try the Private Beta, please go to [portal.defang.dev](https://portal.defang.dev) and register. We would love to have you kick the tires and give us your feedback! You can also check out our [documentation](https://docs.defang.io/docs/intro), [samples](https://docs.defang.io/docs/intro), and our [GitHub repository](https://github.com/DefangLabs).
1616

1717
**Stay Tuned for More**
1818

blog/2024-02-12-announcing-defang-public-beta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can learn more about Defang [here](https://docs.defang.io/docs/intro). Also
1616

1717
**Try the Public Beta!**
1818

19-
To try the Public Beta, please go to [defang.io](http://defang.io) and click on [Download](https://github.com/DefangLabs/defang/releases/latest) to download the CLI and [get started](https://docs.defang.io/docs/getting-started). We would love to have you kick the tires and give us your feedback! Once you sign up you’ll receive an invitation to our Slack support channel in email. You are also welcome to file [Github issues here](https://github.com/DefangLabs/defang/issues).
19+
To try the Public Beta, please go to [defang.io](http://defang.io) and click on [Download](https://github.com/DefangLabs/defang/releases/latest) to download the CLI and [get started](https://docs.defang.io/docs/getting-started). We would love to have you kick the tires and give us your feedback! Once you sign up you’ll receive an invitation to our Slack support channel in email. You are also welcome to file [GitHub issues here](https://github.com/DefangLabs/defang/issues).
2020

2121
**Stay Tuned for More**
2222

blog/2024-03-20-dev-environments.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ If you want to get started with Codespaces, you can just fork [this repo](https:
2121

2222
[Dev Containers](https://code.visualstudio.com/docs/devcontainers/containers) are a cool way to provision and configure development environments and share that configuration with other people you are working with. It's a spec that is supported by [VS Code](https://code.visualstudio.com/docs/devcontainers/containers), [Visual Studio](https://devblogs.microsoft.com/cppblog/dev-containers-for-c-in-visual-studio/), the JetBrains IDEs like [IntelliJ](https://www.jetbrains.com/help/idea/connect-to-devcontainer.html) and [PyCharm](https://www.jetbrains.com/help/pycharm/connect-to-devcontainer.html), [DevPod](https://devpod.sh/docs/developing-in-workspaces/devcontainer-json) and others.
2323

24-
## GitPod
24+
## Gitpod
2525

26-
GitPod is another Cloud IDE, a bit like GitHub Codespaces. If prefer GitPod, you can try Defang in a GitPod environment by using [this repo](https://github.com/DefangLabs/gitpod-workspace/tree/main).
26+
Gitpod is another Cloud IDE, a bit like GitHub Codespaces. If prefer Gitpod, you can try Defang in a Gitpod environment by using [this repo](https://github.com/DefangLabs/gitpod-workspace/tree/main).

docs/concepts/deployments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_position: 500
66

77
# Deployment
88

9-
When you deploy using Defang, whether it's with `defang compose up` with a [compose file](./compose.md) or using a [Pulumi program](./pulumi.md), Defang will build your services in the cloud and manage the deployment process for you. If you provide a Dockerfile and build context, Defang will upload the files found within the build context to the cloud (either yours in [Defang BYOC](./defang-byoc.md) or ours in [Defang Playground](./defang-playground.md)), build the image, and store it in the cloud provider's container registry.
9+
When you deploy using Defang, whether it's with `defang compose up` with a [Compose file](./compose.md) or using a [Pulumi program](./pulumi.md), Defang will build your services in the cloud and manage the deployment process for you. If you provide a Dockerfile and build context, Defang will upload the files found within the build context to the cloud (either yours in [Defang BYOC](./defang-byoc.md) or ours in [Defang Playground](./defang-playground.md)), build the image, and store it in the cloud provider's container registry.
1010

1111
## Deploying Updates
1212

docs/concepts/managed-storage/managed-postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The AWS Console can be used to restore a snapshop into a new instance of postgre
8585
<!--
8686
### Major Version Updating of Engine
8787
88-
To update the database engine you can update the image to a later version in your compose file and apply it via ```defang compose up --provider=aws```. In the example below, we change from Postgres 15 to 16.
88+
To update the database engine you can update the image to a later version in your Compose file and apply it via ```defang compose up --provider=aws```. In the example below, we change from Postgres 15 to 16.
8989
9090
Please note the upgrading will occur immediately and may result in the database being unavailable for some time.
9191

docs/concepts/projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ sidebar_position: 200
66

77
# Projects
88

9-
A _project_ refers to a cohesive collection of services which are defined and managed using a `compose.yaml` file.
9+
A _project_ refers to a cohesive collection of services which are defined and managed using a [`compose.yaml` file](./compose.md).
1010

1111
## Project Names
1212

13-
The _project name_ can be defined in the compose file with [the `name` property](https://docs.docker.com/compose/compose-file/04-version-and-name/#name-top-level-element), otherwise the base name of the project directory will be used.
13+
The _project name_ can be defined in the Compose file with the [`name` property](https://docs.docker.com/compose/compose-file/04-version-and-name/#name-top-level-element), otherwise the base name of the project directory will be used.
1414

1515
The project name may then be used when performing project-wide operations such as listing services, tailing logs, or deprovisioning. For example:
1616
```

docs/concepts/services.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ sidebar_position: 200
66

77
# Services
88

9-
Defang allows you deploy services defined as containers. You can define your services using a [compose file](./compose.md) or a [Pulumi program](./pulumi.md). Services can be exposed to the internet or kept private, and can communicate between themselves using the following conventions for hostnames:
9+
Defang allows you deploy services defined as containers. You can define your services using a [Compose file](./compose.md) or a [Pulumi program](./pulumi.md). Services can be exposed to the internet or kept private, and can communicate between themselves using the following conventions for hostnames:
1010

1111
`<username>-<service-name>`
1212

1313
You can learn more about accounts and usernames in the [accounts page](./accounts.md).
1414

1515
:::tip Service Names
16-
Service names are defined in your compose file or your Pulumi program.
16+
Service names are defined in your Compose file or your Pulumi program.
1717
:::
1818

19-
You can learn more about about how to define [services with compose files here](./compose.md) and [services with Pulumi here](./pulumi.md). You can learn more about how services are deployed in the [deployment page](./deployments.md).
19+
You can learn more about about how to define [services with Compose files here](./compose.md) and [services with Pulumi here](./pulumi.md). You can learn more about how services are deployed in the [deployment page](./deployments.md).
2020

2121
:::info
2222
While this is the current state of the Defang model, we plan to add support for other types of services in the future, including serverless functions.

docs/intro/intro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import DocCardList from "@docusaurus/theme-classic/lib/theme/DocCardList";
2727
type: "link",
2828
href: "/docs/category/cli",
2929
label: "CLI Reference",
30-
description: "Use the defang CLI to deploy your app",
30+
description: "Use the Defang CLI to deploy your app",
3131
},
3232
{
3333
type: "link",

docs/tutorials/deploy-to-aws.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $ defang compose up --provider=aws
4444

4545
## Step 4 - Inspect your deployment
4646

47-
Defang will provision resources in your AWS account and deploy your services. You can inspect the resources created in your AWS dashboard.
47+
Defang will provision resources in your AWS account and deploy your services. You can inspect the resources created in your AWS Dashboard.
4848

4949
***
5050

docs/tutorials/deploy-to-digitalocean.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $ defang compose up --provider=do
4141

4242
## Step 4 - Inspect your deployment
4343

44-
Defang will provision resources in your DigitalOcean account and deploy your services. You can inspect the resources created in your DigitalOcean dashboard.
44+
Defang will provision resources in your DigitalOcean account and deploy your services. You can inspect the resources created in your DigitalOcean Dashboard.
4545

4646
***
4747

0 commit comments

Comments
 (0)