0

我是第一次使用 heroku,第一次使用 postgres 新手,并且在部署到 heroku 时遇到了一些困难。

我的应用程序在我的机器上运行良好,但是当我尝试访问 myapp.heroku.com 时,我得到一个 status=500。

到目前为止我的步骤:

$ lunchy start postgres
$ createdb -Ouser -Eutf8 myapp_development
$ createdb -Ouser -Eutf8 myapp_test
$ rails new myapp --development=postgresql 
$ cd myapp
$ git init 
$ git add .
$ git commit -m "init"
$ git push -u origin master
$ heroku create --stack cedar
$ git push heroku master

>>>>Some simple app scaffolding<<<<<

$ git add .
$ git commit -m "simple scaffolding"
$ git push 
$ git push heroku 
$ heroku run rake db:migrate

该命令似乎正在运行,但没有看到任何正在创建的表。

过程文件内容:

web: bundle exec thin start -p $PORT -e $RACK_ENV

heroku 日志显示:

2011-11-18T08:01:28+00:00 app[run.6]: Awaiting client
2011-11-18T08:01:28+00:00 app[run.6]: Starting process with command `bundle exec rake db:migrate`
2011-11-18T08:01:29+00:00 heroku[run.6]: State changed from starting to up
2011-11-18T08:01:33+00:00 heroku[run.6]: Process exited
2011-11-18T08:01:35+00:00 heroku[run.6]: State changed from up to complete
2011-11-18T08:03:21+00:00 heroku[router]: GET myapp.herokuapp.com/ dyno=web.1 queue=0 wait=0ms service=9ms status=500 bytes=728
2011-11-18T08:03:23+00:00 heroku[router]: GET myapp.herokuapp.com/favicon.ico dyno=web.1 queue=0 wait=0ms service=17ms status=304 bytes=0
2011-11-18T08:04:18+00:00 app[web.1]: 
2011-11-18T08:04:18+00:00 app[web.1]: 
2011-11-18T08:04:18+00:00 app[web.1]: Started GET "/" for 101.171.144.139 at 2011-11-18 08:04:18 +0000
2011-11-18T08:04:18+00:00 app[web.1]:   Processing by PagesController#home as HTML
2011-11-18T08:04:18+00:00 app[web.1]: Rendered pages/home.html.erb within layouts/application (0.2ms)
2011-11-18T08:04:18+00:00 app[web.1]: Rendered layouts/_head.html.erb (0.9ms)
2011-11-18T08:04:18+00:00 app[web.1]: Completed 500 Internal Server Error in 2ms
2011-11-18T08:04:18+00:00 app[web.1]: 
2011-11-18T08:04:18+00:00 app[web.1]: ActionView::Template::Error (custom.css isn't precompiled):
2011-11-18T08:04:18+00:00 app[web.1]:     7:   <meta name="viewport" content="width=device-width" />
2011-11-18T08:04:18+00:00 app[web.1]:     8:   <title><%= title %></title>
2011-11-18T08:04:18+00:00 app[web.1]:     9:   <%= stylesheet_link_tag    "application" %>
2011-11-18T08:04:18+00:00 app[web.1]:     10:   <%= stylesheet_link_tag 'custom', :media => 'screen' %>
2011-11-18T08:04:18+00:00 app[web.1]:     11:   <%= javascript_include_tag "application" %>
2011-11-18T08:04:18+00:00 app[web.1]:     12:   <%= csrf_meta_tags %>
2011-11-18T08:04:18+00:00 app[web.1]:     13: </head>
2011-11-18T08:04:18+00:00 app[web.1]:   app/views/layouts/_head.html.erb:10:in `_app_views_layouts__head_html_erb___3427718828002391478_29348560'
2011-11-18T08:04:18+00:00 app[web.1]:   app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___1135382871397557001_29029960'
2011-11-18T08:04:18+00:00 app[web.1]: 
2011-11-18T08:04:18+00:00 heroku[router]: GET myapp.herokuapp.com/ dyno=web.1 queue=0 wait=0ms service=13ms status=500 bytes=728
2011-11-18T08:04:18+00:00 app[web.1]: 
2011-11-18T08:04:18+00:00 app[web.1]: cache: [GET /] miss
2011-11-18T08:04:19+00:00 app[web.1]: cache: [GET /favicon.ico] stale, invalid, store

我有一个 custom.css 没有预编译所以我做了

$ RAILS_ENV=production bundle exec rake assets:precompile

这预编译到公共/资产中。然后重新做了

$ git add. 
$ git push
$ git heroku push
$ heroku rake db:migrate
$ heroku open

重新运行,日志中仍然出现相同的错误。

我究竟做错了什么?

宝石文件:

gem 'rails', '3.1.1'

gem 'pg'
gem 'thin'
gem 'foreman'
gem 'heroku'

group :development do
  gem 'rspec-rails'
end

group :test do
  gem 'rspec-rails'
  gem 'webrat'
end

group :assets do
  gem 'sass-rails',   '~> 3.1.4'
  gem 'coffee-rails', '~> 3.1.1'
  gem 'uglifier', '>= 1.0.3'
  gem 'zurb-foundation'
end

gem 'jquery-rails'

数据库.yml:

development:
  adapter: postgresql
  encoding: unicode
  database: myapp_development
  pool: 5
  username: user
  password: password

test:
  adapter: postgresql
  encoding: unicode
  database: myapp_test
  pool: 5
  username: user
  password: password

production:
  adapter: postgresql
  encoding: unicode
  database: myapp_production
  pool: 5
  username: user
  password: password

生产.rb:

MyApp::Application.configure do
  config.cache_classes = true
  config.consider_all_requests_local       = false
  config.action_controller.perform_caching = true
  config.serve_static_assets = false
  config.assets.compress = true
  config.assets.compile = false
  config.assets.digest = true
end
4

2 回答 2

0

您需要将预编译的资产推送到 git。

跑完之后bundle exec rake assets:precompile,做了一个git add .,终于git push heroku master

于 2011-11-18T08:38:36.123 回答
0

您实际上可以在 Cedar 上没有预编译资产的情况下获得成功,请参见以下内容:

“在运行时编译资产”,位于 http://devcenter.heroku.com/articles/rails31_heroku_cedar

您需要在您的 production.rb 中设置以下内容: config.assets.compile = false

为了让它在编译 slug 时编译。

于 2011-11-18T08:47:37.650 回答