I\'m following this tutorial, but it fails when I try to push to Heroku. It seems \"sqlite3.h\" is missing. I\'m new to development so I\'m not sure what information will
What happened to me was, I was following along the Heroku tutorial and when I used git push heroku master
it was pushing from my latest Git commit (obviously!)
What I forgot was that in the eyes of Git, I was still using sqlite in the gemfile! Silly me!
So I used git add .
followed by a git commit -m "Changed to Postgres."
so Git knew about these changes. Pushing after that worked fine for me.