Updated Gemfile and scripts for supporting Heroku (#542)

* Include sqlite only for test and development

* Updated db config

* added assed precompile as a fallback for production

* restored some code from Gemfile

* Restored db settings

* Restored db settings

* Include sqlite for production in the docker image build

* Updated script for building image

* Updated script for building image

* Updated script for building image
This commit is contained in:
Jesus Federico
2019-05-22 12:03:06 -04:00
committed by GitHub
parent 7dfab1482d
commit be84e7e4ed
3 changed files with 6 additions and 5 deletions

View File

@ -13,9 +13,6 @@ gem 'rails', '~> 5.0.7'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SQLite as the primary database.
gem 'sqlite3', '~> 1.3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
@ -89,6 +86,8 @@ group :development, :test do
gem 'byebug', platform: :mri
# Environment configuration.
gem 'dotenv-rails'
# Use a sqlite database in test and development.
gem 'sqlite3', '~> 1.3'
end
group :test do