Skip to content

Commit 492354a

Browse files
authored
Merge pull request #139 from DefangLabs/lio/just-simply
Avoid just/simply
2 parents 9647d7f + e7a9e5a commit 492354a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

blog/2024-03-28-slackbot-sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Now that we have everything set up, let's dive into the deployment process. Foll
4747
2. **Deploy the Slackbot:** Use the Defang CLI's `defang compose up` command to deploy.
4848
4949
## Usage
50-
With your Slackbot up and running, let's explore how to make the most of it. Simply send a POST request to the `/` endpoint with a JSON body containing the message you want to post to the Slack channel. Popular tools like cURL or Postman can help you send the request:
50+
With your Slackbot up and running, let's explore how to make the most of it. Let's send a POST request to the `/` endpoint with a JSON body containing the message you want to post to the Slack channel. Popular tools like cURL or Postman can help you send the request:
5151
5252
```bash
5353
curl 'https://raphaeltm-bot--8080.prod1.defang.dev/' \

blog/2024-05-01-may-product-updates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Hey folks! There is a lot going on at Defang and we're excited to share our late
1111

1212
## npx defang
1313

14-
We know a lot of you are using Defang for the first time. To make it easier to get started, we've added a new way to install the Defang CLI. Now you can use npx to run the CLI without installing it globally. Just run:
14+
We know a lot of you are using Defang for the first time. To make it easier to get started, we've added a new way to install the Defang CLI. Now you can use npx to run the CLI without installing it globally by running:
1515

1616
```bash
1717
npx defang@latest

docs/concepts/accounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Eventually, billing and payment information will be associated with your account
1616

1717
## Creating an Account
1818

19-
To create an account, simply login to Defang and accept the [terms of service](https://defang.io/terms-service.html) using the [CLI](/docs/concepts/authentication.md).
19+
To create an account, login to Defang and accept the [terms of service](https://defang.io/terms-service.html) using the [CLI](/docs/concepts/authentication.md).
2020

2121
At the moment, the only way to authenticate with Defang is through GitHub. We plan to offer other authentication providers in the future.
2222

docs/concepts/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can find a sample of how to set environment variables with Pulumi [here](htt
1414

1515
# Sensitive Config aka Secrets
1616

17-
The Defang CLI allows you to securely store sensitive information such as API keys, passwords, and other credentials. To do so just run:
17+
The Defang CLI allows you to securely store sensitive information such as API keys, passwords, and other credentials. To do so, run:
1818

1919
```bash
2020
# Set a configuration value called API_KEY

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To use managed Postgres, in your `compose.yaml` file, use the `x-defang-postgres
2222

2323
### Required Configuration
2424

25-
When using managed Postgres, you **must** set a password for the database using `defang config set POSTGRES_PASSWORD`. If you do not provide the password, the deployment will fail.
25+
When using managed Postgres, you **must** set a password for the database using `defang config set POSTGRES_PASSWORD`. If you do not provide the password, the deployment will fail.
2626

2727
- `POSTGRES_PASSWORD`: You can can assign the password in the service's environment variables. To learn more about how this works, read about [configuration](../configuration.md).
2828

@@ -38,7 +38,7 @@ You can also set the following optional environment variables to configure the m
3838
You can connect to the managed Postgres instance using the name of your service as the hostname, `POSTGRES_USER`, `POSTGRES_DB`, and `POSTGRES_PASSWORD` environment variables.
3939

4040
### Example
41-
:::info
41+
:::info
4242
For a smoother experience with Defang, we recommend using Postgres 14 for your container images. This version provides easier access and improved usability.
4343
:::
4444

@@ -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 simply 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

0 commit comments

Comments
 (0)