gem 'sqlite3', :group => [:development, :test]
group :production do
gem 'pg'
end
- edit
Gemfile
as above - remove
Gemfile.lock
- run
bundle install --without production
git add .
git commit -am "bundle updating sqlite3"
git push heroku master
gem 'sqlite3', :group => [:development, :test]
group :production do
gem 'pg'
end
Gemfile
as aboveGemfile.lock
bundle install --without production
git add .
git commit -am "bundle updating sqlite3"
git push heroku master