Expand on instructions to set up bundle path (per suggestion by @trwnh)

This commit is contained in:
Jeremy Potter 2023-03-08 18:05:58 -08:00
parent 10b8440471
commit ddfd3e82d6
1 changed files with 8 additions and 1 deletions

View File

@ -49,11 +49,18 @@ You can follow the [pre-requisites instructions from the production guide]({{<re
Run the following commands in the project directory:
```sh
bundle config set --local path vendor/bundle
bundle install
yarn
```
{{<hint style="info">}}
If you would like to avoid installing the gems globally, and are not using something like [RVM gemsets](https://rvm.io/gemsets/basics), you may want to configure the bundle path:
```
bundle config set --local path vendor/bundle
```
{{</hint>}}
{{<hint style="info">}}
On some operating systems, such as Debian and Fedora, `yarn` has been renamed to `yarnpkg`. On these systems, run `yarnpkg` instead of `yarn`.
{{</hint>}}