我正在努力推动掌握,但它不起作用。我用了
git push heroku master
我得到的错误是
An error occurred while installing sqlite3 (1.3.9), and Bundler cannot continue.
Make sure that `gem install sqlite3 -v '1.3.9'` succeeds before bundling.
!
! Failed to install gems via Bundler.
!
! Detected sqlite3 gem which is not supported on Heroku.
! https://devcenter.heroku.com/articles/sqlite3
!
enter code here
! Push rejected, failed to compile Ruby app
To git@heroku.com:jmatharu.git enter code here
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:jmatharu.git'
在这种情况下,任何人都可以帮助我。
答案 0 :(得分:3)
那是因为Heroku不支持SQLite。见this Heroku Documentation on how to set up your application for PostgreSQL,这很清楚。
简而言之,您必须选择PostgreSQL计划,然后配置您的应用程序以连接到它。这主要是使用pg
gem而不是SQLite3。
但很快您也会想要在开发环境中运行PostgreSQL。 SQL的SQLite和Postgres方言在很多方面都有所不同。设置Postgres进行开发可能有点单调乏味,特别是对于Linux以外的任何其他东西。确切的程序随着时间的推移而变化。您最好的选择是为[您的操作系统]设置Google" Rails Postgresql"。