Skip to content

Commit

Permalink
feat: add os specific settings to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-stark-eth committed Sep 15, 2024
1 parent 3398584 commit e192165
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,21 @@ Or with coverage in build directory
```sh
docker compose exec app pnpm run test:coverage
```

## OS specific settings

### Windows + WSL2 + Symlinks + PNPM

In case your running a setup like me,
WSL2 with Ubuntu and have your IDE running on Windows,
your IDE may not be able to use symlinks created by pnpm.
For this scenario you can do the following

```
cp .npmrc.dist .npmrc
make build
make up
make install
```

This will run pnpm without symlinks.

0 comments on commit e192165

Please sign in to comment.