当我尝试将我的 ruby on rails 应用程序部署到 heroku 时遇到了这个问题,我在这里查看了不同的帖子,因为我之前看到过这个问题,但我无法修复它。当我尝试运行时:
$ heroku rake db:migrate
我得到了很多这样的DEPRECATION WARNING
::
接着:
rake aborted!
Please install the postgresql adapter: `gem install activerecord-postgresql-adapter` (pg is not part of the bundle. Add it to Gemfile.)
Tasks: TOP => db:migrate => db:load_config
(See full trace by running task with --trace)
我试图用 'pg' 和我的组 :assets 将我的 Gemfile 更改为 :production,我知道我错过了一些东西,但我不知道是什么。
一些想法?
另外,当我转到应用程序网址时,我得到了这个:
Application Error
An error occurred in the application and your page could not be served. Please try again in a few moments.
If you are the application owner, check your logs for details.
在此先感谢您的任何建议和帮助!!!