0

运行 Heroku ps 并没有给我预期的结果,bundle exec unicorn -p $PORT -c ./config/unicorn.rb而是常规的bin/rails server -p $PORT -e $RAILS_ENV,尽管我的 Procfile 具有以下内容:

web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb

和适当的 unicorn.rb 文件设置。

当我运行Heroku run bashProcfile 时没有列出。

4

1 回答 1

0

明白了 - 只需按如下方式更改我的 gemfile:

收到错误时:

group :development do
  gem 'sinatra', '>= 1.3.0', :require => nil
end

错误修复:

gem 'sinatra', require: false
于 2014-04-19T17:41:41.977 回答