docs: add .env symlink setup instructions for apps/web (#287)

Co-authored-by: Claude <[email protected]>
This commit is contained in:
mino
2025-11-08 06:52:47 +11:00
committed by GitHub
co-authored by Claude
parent f525381fb9
commit eacf231173
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -98,6 +98,14 @@ pnpm install
```bash
openssl rand -base64 32
```
</Step>
<Step title="Create symlink for Next.js">
Create a symlink so that Next.js can access the root `.env` file:
```bash
ln -s ../../.env apps/web/.env
```
</Step>