I recently switched my test database to be postgrsql from sqlite3. Since doing so, when I follow the instruction here: https://devcenter.heroku.com/articles/rails-asset-pipeline on deploying my assets to heroku, I get the following error:
database configuration does not specify adapter
This happens after running this step
RAILS_ENV=production bundle exec rake assets:precompile
I tried following the instructions from this post and it did not work.
bundle exec rake assets:precompile - database configuration does not specify adapter
I'm guessing it has something to do with my database.yml file, which is here
development:
adapter: postgresql
database: playerpong_database
pool: 5
timeout: 5000
encoding: unicode
host: localhost
Any ideas?