Heroku系统找不到指定的路径

时间:2016-03-01 23:07:05

标签: heroku

我正在Heroku开发中心做教程(在这里找到:https://devcenter.heroku.com/articles/getting-started-with-scala#introduction)。我完成了导致在本地运行我的应用程序的所有步骤(据我所知,应用程序已正确部署并且我已经安装了应用程序依赖项),但是当我运行命令'heroku local web -f Procfile.windows'时它给了我一个关于web.1的错误,说“系统找不到指定的路径”......我仔细检查了web.1是否正在使用'heroku ps'命令。

帮助!

2 个答案:

答案 0 :(得分:0)

似乎与JDK版本有关。我试图使用JDK 10.0.1并遇到同样的问题。当我改为指向JDK 1.8.0_121(我认为)Heroku安装时,我能够继续。

答案 1 :(得分:0)

Procfile.windows 中指定的文件尚不可用。

web: target\universal\stage\bin\play-getting-started.bat

要解决此问题,请运行:

sbt compile stage

在项目目录的根目录下生成所需的文件。