1

我有一个在 heroku 上运行的小型 node.js 应用程序。直到今天一切都很好。

我对我的一个 .jade 文件进行了微小的更改并重新部署。现在我在我的heroku日志中得到了这个:

2013-01-09T20:44:40+00:00 heroku[slugc]: Slug compilation started
2013-01-09T20:44:53+00:00 heroku[api]: Release v36 created by steve@donie.us
2013-01-09T20:44:53+00:00 heroku[api]: Deploy c299759 by steve@donie.us
`013-01-09T20:44:55+00:00 heroku[web.1]: Starting process with command `node ./doniewebapp.js
2013-01-09T20:44:56+00:00 app[web.1]:     at Function.Module._resolveFilename (module.js:338:15)
2013-01-09T20:44:56+00:00 app[web.1]:     throw err;
2013-01-09T20:44:56+00:00 app[web.1]:     at Function.Module._load (module.js:280:25)
'013-01-09T20:44:56+00:00 app[web.1]: Error: Cannot find module '/app/doniewebapp.js
2013-01-09T20:44:56+00:00 app[web.1]:     at process.startup.processNextTick.process._tickCallback (node.js:244:9)
2013-01-09T20:44:56+00:00 app[web.1]:
2013-01-09T20:44:56+00:00 app[web.1]: module.js:340
2013-01-09T20:44:56+00:00 app[web.1]:           ^
2013-01-09T20:44:56+00:00 app[web.1]:     at Module.runMain (module.js:492:10)
2013-01-09T20:44:57+00:00 heroku[web.1]: Process exited with status 1
2013-01-09T20:44:54+00:00 heroku[slugc]: Slug compilation finished
2013-01-09T20:44:53+00:00 heroku[web.1]: State changed from crashed to starting
2013-01-09T20:44:57+00:00 heroku[web.1]: State changed from starting to crashed

我已经确认 doniewebapp.js 文件仍然存在,如果我使用,我什至可以运行该应用程序

heroku run node doniewebapp.js

任何想法都非常感谢。

4

1 回答 1

1

我有同样的麻烦。

使用命令 `node ./doniewebapp.js <-- 反引号启动进程。

$ vi Procfile
:set fileformat=unix
:w

我已经解决了这个问题。

于 2013-01-13T03:41:19.533 回答