我是第一次使用heroku,第一次使用postgres新手,并且在部署到heroku时遇到了一些困难。
我的应用在我的机器上工作正常,但当我尝试访问myapp.heroku.com时,状态= 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
该命令似乎正在运行,但没有看到任何正在创建的表。
Procfile内容:
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
重新运行并在日志中仍然出现相同的错误。
我做错了什么?
的Gemfile:
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'
database.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
Production.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
答案 0 :(得分:0)
您需要将预编译资产推送到git。
运行bundle exec rake assets:precompile
后,请执行git add .
,最后git push heroku master
。
答案 1 :(得分:0)
您可以在Cedar上没有预编译资产的情况下实现,请参阅以下内容:
“在运行时编译资产”at http://devcenter.heroku.com/articles/rails31_heroku_cedar
您需要在production.rb中设置以下内容:
config.assets.compile = false
为了让它在编译slug时进行编译。