I want to use sqlite3 but pg for production on heroku. However, I don't have postgres installed on local host, so bundle install doesn't work when I run the code below
I know there's something I can add to the code below so that rails doesn't try to install it when I run bundle install but i don't know what that is. Can anyone tell me?
#gem 'sqlite3'
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
end