Skip to content

Commit

Permalink
refactor(docs): add instruction to symlink .env file from apps/web to…
Browse files Browse the repository at this point in the history
… packages/db
  • Loading branch information
ixahmedxi committed Jun 9, 2024
1 parent b11a242 commit 184a69d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ You will need to set-up some environment variables in a `.env.local` file in the
```bash
# Copy the .env.example file into a .env.local file.
cp ./apps/web/.env.example ./apps/web/.env.local

# You will also need to symlink that file into the packages/db directory as a `.env` file.
cd packages/db && ln -s ../../apps/web/.env.local .env
```

Here is how you can obtain each of the required values:
Expand Down

0 comments on commit 184a69d

Please sign in to comment.