Can't push to Heroku

I wanna push my application straight from Github to Heroku. Everything goes through until it hits the installation of the gems. It can't install the SQLite3 (local DB). I know Heroku doesn't use SQLite but I didn't expect this problem.

The error messages recommended installing a version of SQLite3 (v1.3.6) which I did but it keeps on complaining :(. Any workaround?

Thanks in advance.

I wanna push my application straight from Github to Heroku. Everything

goes through until it hits the installation of the gems. It can’t

install the SQLite3 (local DB).

I know Heroku doesn’t use SQLite but I didn’t expect this problem.

The error messages recommended installing a version of SQLite3

(v1.3.6) which I did

but it keeps on complaining :(. Any workaround?

Thanks in advance.

There are great docs on Heroku and lots of tutorials that show up from a quick google. For example:

To use postgres instead of sqllite:

https://devcenter.heroku.com/articles/how-do-i-use-sqlite3-for-development

https://devcenter.heroku.com/articles/local-postgresql

To use sqllite in dev and postgres in production:

http://railsapps.github.com/rails-heroku-tutorial.html

Do those help?

Jeremy Walker

Thanks. It did :slight_smile: