Skip to content

Commit

Permalink
Ignore production and deploy gems for local dev
Browse files Browse the repository at this point in the history
**Why**:
- Those gems are not required to allow people outside of 18F to run the
app locally. In some cases, like the equifax gem, they are preventing
those folks from running the app.
  • Loading branch information
monfresh committed Sep 11, 2017
1 parent 5962495 commit 8f8f0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Dir.chdir APP_ROOT do
puts "\n== Installing dependencies =="
run "gem install bundler --conservative"
run 'gem install foreman --conservative && gem update foreman'
run "bundle check || bundle install"
run "bundle check || bundle install --without deploy production"
run "npm install"
run "npm run build"
run "gem install mailcatcher"
Expand Down

0 comments on commit 8f8f0bf

Please sign in to comment.