生产中的导轨+ Heroku

时间:2013-03-03 11:38:49

标签: ruby-on-rails heroku

当我进入控制台时:

git push heroku master

我明白了:

       Your bundle is complete! It was installed into ./vendor/bundle
       Cleaning up the bundler cache.
       Would have removed sass-rails (3.2.6)
       Would have removed sass (3.2.5)
-----> Writing config/database.yml to read from DATABASE_URL
-----> Preparing app for Rails asset pipeline
       Running: rake assets:precompile
       Asset precompilation completed (13.99s)
-----> Rails plugin injection
       Injecting rails_log_stdout
       Injecting rails3_serve_static_assets
-----> Discovering process types
       Procfile declares types      -> (none)
       Default types for Ruby/Rails -> console, rake, web, worker

-----> Compiled slug size: 12.0MB
-----> Launching... done, v7
       http://chernobylmusic.herokuapp.com deployed to Heroku

运行:

heroku run rake db:migrate

结果是:

Running `rake db:migrate` attached to terminal... up, run.5186
DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonrails.org/2012/1/4/rails-3-2-0-rc2-has-been-released. (called from <top (required)> at /app/Rakefile:7)
DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonrails.org/2012/1/4/rails-3-2-0-rc2-has-been-released. (called from <top (required)> at /app/Rakefile:7)

并应用迁移。

当我在Heroku上访问我的页面时,我看到We're sorry, but something went wrong.

2 个答案:

答案 0 :(得分:6)

运行heroku logs并查看错误

答案 1 :(得分:0)

错误日志显示

PG::Error: ERROR:  relation "events" does not exist

这意味着您没有创建数据库,甚至您也没有运行迁移。检查你的Gemfile中是否有pg gem。如果没有在Gemfile的生产块中添加gem 'pg',则Heroku在postgres上运行。

做一个

git push heroku master

THN

heroku run rake db:create

THN

heroku run rake db:migrate

它应该有用。