Merge pull request #5 from lighthouse-labs/deployable
Updates to follow better practices with environment and heroku deployability
Showing
... | @@ -11,8 +11,15 @@ gem 'sinatra-activerecord' | ... | @@ -11,8 +11,15 @@ gem 'sinatra-activerecord' |
gem 'puma' | gem 'puma' | ||
gem 'tux' | gem 'tux' | ||
# These gems are only installed when run as `bundle install --without production` | |||
group :development, :test do | group :development, :test do | ||
gem 'pry' | gem 'pry' | ||
gem 'shotgun' | gem 'shotgun' | ||
gem 'sqlite3' | gem 'sqlite3' | ||
end | end | ||
# bundle install --without test --without development | |||
group :production do | |||
# use postgres in production, or move outside a group if your app uses postgres for development and production | |||
gem 'pg' | |||
end |
Please register or sign in to comment