7

这是我的“git push heroku master”命令的输出:

   [info] Done updating.
   [info] Compiling 2 Scala sources to /tmp/build_3kg6a8iex5xd6/target/scala-2.8.1/classes...
   [success] Total time: 8 s, completed Apr 22, 2012 4:54:01 PM
   [info] Wrote start script for mainClass := Some(JettyLauncher) to /tmp/build_3kg6a8iex5xd6/target/start
   [success] Total time: 0 s, completed Apr 22, 2012 4:54:01 PM
   Discovering process types
   Procfile declares types -> web
   Compiled slug size is 57.0MB
   Launching...  done, v23
   http://xxxxxx.herokuapp.com deployed to Heroku

在此之后,应用程序仍未启动。试过heroku ps。它没有显示任何过程。

我的 Procfile 的内容:

web: target/start JettyLauncher

当我尝试工头启动时,它工作正常。

有人可以帮我找出为什么应用程序在部署到 Heroku 后没有启动吗?

4

1 回答 1

14

尝试运行

heroku scale web=1

如果您在此 heroku 之前推送失败,则不一定会自动启动应用程序

于 2012-04-22T18:55:53.700 回答