部署 Discord.js Bot 到 Heroku 時報錯: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
解決方法….
造成原因
當 Heroku 的 app 啓動時,Heroku 會幫你綁一個 port 給你,但你的 bot 並沒有在監聽任何一個 port,對應不上就出錯了。
解決方法
在 node 的專案根目錄新增一個檔案
Procfile
。在
Procfile
加入下面這一行(如果你的 bot 啓動的指令不同的話也請在這裡一併修改)。
worker: npm start
把更動推上 Heroku
回到 Heroku,進到 App > Resources Tab 然後關閉
web
並且把worker
打開。
- 這時你的 Bot 應該會重新啓動並且正常運作。
相關內容
有任何問題都歡迎在底下留言問我!如果我的文章有幫助到你的話,請你考慮幫我免費多按幾個讚喲 *(*´∀`*)☆