From ad87729e31881eb9cc0d712675542095adf42849 Mon Sep 17 00:00:00 2001 From: "Sean M. Pappalardo" Date: Thu, 18 Jul 2024 14:25:56 -0400 Subject: [PATCH] Update bundle config command, add instructions for PostgreSQL --- doc/installation.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/doc/installation.md b/doc/installation.md index 375997e8..a3c2712a 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -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.