Update bundle config command, add instructions for PostgreSQL

This commit is contained in:
Sean M. Pappalardo 2024-07-18 14:25:56 -04:00 committed by Jyri-Petteri Paloposki
parent f097a1f5e9
commit ad87729e31

View file

@ -153,13 +153,22 @@ Tracks is built upon a number of Ruby libraries (known as gems). The Bundl
* If you are using SQLite:
```
bundle install --without "development test mysql"
bundle config set without "development test mysql"
bundle install
```
* If you are using MySQL:
```
bundle install --without "development test sqlite"
bundle config set without "development test sqlite"
bundle install
```
* If you are using PostgreSQL:
```
bundle config set without "development test sqlite mysql"
bundle install
```
* If you are installing Tracks on Windows or Mac OS X, or if you have another JavaScript runtime such as Node.js installed, you may also append `therubyracer` as an additional "without" parameter.