mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
Update bundle config command, add instructions for PostgreSQL
This commit is contained in:
parent
f097a1f5e9
commit
ad87729e31
1 changed files with 11 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue