fix: build errors on docs page (#3056)

This commit is contained in:
Matti Nannt
2024-08-27 10:35:01 +02:00
committed by GitHub
parent 6314eeda0a
commit 711dc83f5c

View File

@@ -94,8 +94,8 @@ cp .env.example .env
4. Generate & set some secret values mandatory for the `ENCRYPTION_KEY`, `NEXTAUTH_SECRET` and `CRON_SECRET` in the .env file. You can use the following command to generate the random string of required length:
- For Linux
<Col>
<CodeGroup title="For Linux">
<Col>
<CodeGroup title="For Linux">
```bash
sed -i '/^ENCRYPTION_KEY=/c\ENCRYPTION_KEY='$(openssl rand -hex 32) .env
@@ -107,8 +107,8 @@ sed -i '/^CRON_SECRET=/c\CRON_SECRET='$(openssl rand -hex 32) .env
</Col>
- For Mac
<Col>
<CodeGroup title="For Mac">
<Col>
<CodeGroup title="For Mac">
```bash
sed -i '' '/^ENCRYPTION_KEY=/s|.*|ENCRYPTION_KEY='$(openssl rand -hex 32)'|' .env