2017-09-20 33 views
2

我試圖創建瑪奇朵(ClojureScript模板)的空白應用這個命令:如何將Macchiato clojurescript應用程序部署到Heroku免費帳戶?

lein new macchiato abc 
cd abc 
git init 
heroku create 
git add --all 
git commit -m "Initial" 
git push heroku master 
heroku run lein package 

但應用程序崩潰。

我應該怎麼做免費的Heroku上運行瑪奇朵/ ClojureScript空白應用程序?

從Heroku的一些日誌:

2017-09-20T14:20:18.982364+00:00 heroku[web.1]: Starting process with command `node target/release/abc.js` 
2017-09-20T14:20:21.393478+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them. 
2017-09-20T14:20:23.735706+00:00 app[web.1]: INFO [abc.core:19] - abc started on 127.0.0.1 : 46297 
2017-09-20T14:21:19.612740+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 
2017-09-20T14:21:19.612805+00:00 heroku[web.1]: Stopping process with SIGKILL 
2017-09-20T14:21:19.765958+00:00 heroku[web.1]: State changed from starting to crashed 
2017-09-20T14:21:19.754144+00:00 heroku[web.1]: Process exited with status 137 
2017-09-20T14:21:20.199389+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-sea-65041.herokuapp.com request_id=538fbec8-6d9a-4a9c-8ee6-682d2ae18ee4 fwd="194.186.207.221" dyno= connect= service= status=503 bytes= protocol=https 
2017-09-20T14:21:20.932872+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-sea-65041.herokuapp.com request_id=74269aea-639d-41b8-8c76-4bb0494eb593 fwd="194.186.207.221" dyno= connect= service= status=503 bytes= protocol=https 
2017-09-20T14:21:22.963835+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-sea-65041.herokuapp.com request_id=08a421a1-03a0-4e27-8efe-e4209e249e9a fwd="194.186.207.221" dyno= connect= service= status=503 bytes= protocol=https 
+1

你爲什麼運行'heroku run lein package'?我想你可能想改爲設置'heroku config:set LEIN_BUILD_TASK =「package」'然後運行'git push heroku master'。 – codefinger

+0

我使用這個命令在Heroku一側構建包。 –

+0

嘗試過「heroku config:set LEIN_BUILD_TASK =」package「」。不工作。你能一步一步地重現嗎? –

回答

1

這應該是問題

2017-09-20T14:20:23.735706+00:00 app[web.1]: INFO [abc.core:19] - abc started on 127.0.0.1 : 46297 

應用程序只聽取127.0.0.1的來源,然而,Heroku的期待您的應用程序在0.0聽。 0.0。

添加環境變量HOST,值爲0.0.0.0應解決問題。

+0

是的,這解決了這個問題,但也需要更改Procfile。並且不需要提交project.clj,因爲Heroku將項目確定爲Clojure,而不是Node.js. –

相關問題