diff --git a/blog/2024-03-28-slackbot-sample.md b/blog/2024-03-28-slackbot-sample.md index 37fe3a4f9..34ab47c12 100644 --- a/blog/2024-03-28-slackbot-sample.md +++ b/blog/2024-03-28-slackbot-sample.md @@ -47,7 +47,7 @@ Now that we have everything set up, let's dive into the deployment process. Foll 2. **Deploy the Slackbot:** Use the Defang CLI's `defang compose up` command to deploy. ## Usage -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: +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: ```bash curl 'https://raphaeltm-bot--8080.prod1.defang.dev/' \ diff --git a/blog/2024-05-01-may-product-updates.md b/blog/2024-05-01-may-product-updates.md index 5ca3bd628..235059fd5 100644 --- a/blog/2024-05-01-may-product-updates.md +++ b/blog/2024-05-01-may-product-updates.md @@ -11,7 +11,7 @@ Hey folks! There is a lot going on at Defang and we're excited to share our late ## npx defang -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: +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: ```bash npx defang@latest diff --git a/docs/concepts/accounts.md b/docs/concepts/accounts.md index 39a40df28..6e2dd5a83 100644 --- a/docs/concepts/accounts.md +++ b/docs/concepts/accounts.md @@ -16,7 +16,7 @@ Eventually, billing and payment information will be associated with your account ## Creating an Account -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). +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). At the moment, the only way to authenticate with Defang is through GitHub. We plan to offer other authentication providers in the future. diff --git a/docs/concepts/configuration.md b/docs/concepts/configuration.md index dc02827f9..dde61da0e 100644 --- a/docs/concepts/configuration.md +++ b/docs/concepts/configuration.md @@ -14,7 +14,7 @@ You can find a sample of how to set environment variables with Pulumi [here](htt # Sensitive Config aka Secrets -The Defang CLI allows you to securely store sensitive information such as API keys, passwords, and other credentials. To do so just run: +The Defang CLI allows you to securely store sensitive information such as API keys, passwords, and other credentials. To do so, run: ```bash # Set a configuration value called API_KEY diff --git a/docs/concepts/managed-storage/managed-postgres.md b/docs/concepts/managed-storage/managed-postgres.md index f21e3a4c3..0109221e9 100644 --- a/docs/concepts/managed-storage/managed-postgres.md +++ b/docs/concepts/managed-storage/managed-postgres.md @@ -22,7 +22,7 @@ To use managed Postgres, in your `compose.yaml` file, use the `x-defang-postgres ### Required Configuration -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. +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. - `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). @@ -38,7 +38,7 @@ You can also set the following optional environment variables to configure the m 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. ### Example -:::info +:::info For a smoother experience with Defang, we recommend using Postgres 14 for your container images. This version provides easier access and improved usability. ::: @@ -85,7 +85,7 @@ The AWS Console can be used to restore a snapshop into a new instance of postgre