1

我正在尝试将 jekyll 应用程序部署到 heroku ......它在本地运行没有问题。

这是heroku日志

2012-06-21T18:02:26+00:00 heroku[web.1]: State changed from crashed to created
2012-06-21T18:02:26+00:00 heroku[web.1]: State changed from created to starting
2012-06-21T18:02:28+00:00 heroku[web.1]: Starting process with command `jekyll --server 37139`
2012-06-21T18:02:29+00:00 app[web.1]: bash: jekyll: command not found
2012-06-21T18:02:30+00:00 heroku[web.1]: Process exited with status 127
2012-06-21T18:02:30+00:00 heroku[web.1]: State changed from starting to crashed
2012-06-21T18:02:31+00:00 heroku[router]: Error H10 (App crashed) -> GET furious-dusk-3604.herokuapp.com/ dyno= queue= wait= service= status=503 bytes=
2012-06-21T18:02:32+00:00 heroku[router]: Error H10 (App crashed) -> GET furious-dusk-3604.herokuapp.com/favicon.ico dyno= queue= wait= service= status=503 bytes=
2012-06-21T18:02:36+00:00 heroku[router]: Error H16 (Redirect to herokuapp.com) -> GET furious-dusk-3604.herokuapp.com/ dyno= queue= wait= service= status=301 bytes=

线

2012-06-21T18:02:29+00:00 app[web.1]: bash: jekyll: command not found

引起了我的注意,但我真的不知道这里可能是什么问题。在我的 Gemfile 中,我确实指定了

gem 'jekyll'

干杯!

4

1 回答 1

0

我假设您正在使用带有 Heroku buildpack 的 rack-jekyll。我遇到了同样的问题,Heroku 记录了崩溃。我通过创建一个 Sinatra 服务器来解决它,如下所述:Jekyll on Heroku

于 2012-10-11T07:06:40.747 回答