fix(docs): adjust env variables (#95)

This commit is contained in:
Giorgio Boa
2025-01-19 23:02:23 +01:00
committed by GitHub
parent c9814ce47d
commit 2137ba8eab
3 changed files with 6 additions and 8 deletions

View File

@@ -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=<access-key-id>
AWS_SECRET_ACCESS_KEY=<secret-access-key>
AWS_ACCESS_KEY=<access-key-id>
AWS_SECRET_KEY=<secret-access-key>
```
![create access key](/images/aws/key-6.png)

View File

@@ -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=<access-key-id>
AWS_SECRET_ACCESS_KEY=<secret-access-key>
AWS_ACCESS_KEY=<access-key-id>
AWS_SECRET_KEY=<secret-access-key>
```
Once the app is added you can add the Client ID under ``GITHUB_ID``and CLIENT SECRET under ```GITHUB_SECRET```
</Step>
<Step title="Optional: Enable prisma optimize">
To enable Prisma Optimize and get insights on queires you can add this in you .env

View File

@@ -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=<access-key-id>
AWS_SECRET_ACCESS_KEY=<secret-access-key>
AWS_ACCESS_KEY=<access-key-id>
AWS_SECRET_KEY=<secret-access-key>
```
<Tip>