From 2137ba8eabff1cca3b6309fcb355deb7a355cf72 Mon Sep 17 00:00:00 2001 From: Giorgio Boa <35845425+gioboa@users.noreply.github.com> Date: Sun, 19 Jan 2025 23:02:23 +0100 Subject: [PATCH] fix(docs): adjust env variables (#95) --- apps/docs/get-started/create-aws-credentials.mdx | 4 ++-- apps/docs/get-started/local.mdx | 6 ++---- apps/docs/get-started/self-hosting.mdx | 4 ++-- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/apps/docs/get-started/create-aws-credentials.mdx b/apps/docs/get-started/create-aws-credentials.mdx index 3cffcb1..58dae39 100644 --- a/apps/docs/get-started/create-aws-credentials.mdx +++ b/apps/docs/get-started/create-aws-credentials.mdx @@ -28,8 +28,8 @@ description: Step by step guide to create AWS credentials to self-host Unsend. Copy the access key ID and secret access key to your `.env` file. ```env - AWS_ACCESS_KEY_ID= - AWS_SECRET_ACCESS_KEY= + AWS_ACCESS_KEY= + AWS_SECRET_KEY= ``` ![create access key](/images/aws/key-6.png) diff --git a/apps/docs/get-started/local.mdx b/apps/docs/get-started/local.mdx index d6ea0e3..523569c 100644 --- a/apps/docs/get-started/local.mdx +++ b/apps/docs/get-started/local.mdx @@ -121,11 +121,9 @@ pnpm install Next, we need to add in the [AWS credentials](https://docs.unsend.dev/get-started/create-aws-credentials). Follow the detailed guide to get the AWS credentials with accurate permissions and add them in: ``` - AWS_ACCESS_KEY_ID= - AWS_SECRET_ACCESS_KEY= + AWS_ACCESS_KEY= + AWS_SECRET_KEY= ``` - - Once the app is added you can add the Client ID under ``GITHUB_ID``and CLIENT SECRET under ```GITHUB_SECRET``` To enable Prisma Optimize and get insights on queires you can add this in you .env diff --git a/apps/docs/get-started/self-hosting.mdx b/apps/docs/get-started/self-hosting.mdx index 1a10b10..a79b6be 100644 --- a/apps/docs/get-started/self-hosting.mdx +++ b/apps/docs/get-started/self-hosting.mdx @@ -22,8 +22,8 @@ Unsend depends on AWS ses to send emails and SNS to receive email status. Along Add the following environment variables. ```env - AWS_ACCESS_KEY_ID= - AWS_SECRET_ACCESS_KEY= + AWS_ACCESS_KEY= + AWS_SECRET_KEY= ```