Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 node.js 和 heroku,并且希望运行多个 web 进程。在 Procfile 中,我看起来像这样:
web: node web.js web: node differentWeb.js
但是,当我运行它时,它只会运行两者中的最后一个。有没有办法做到这一点?
Heroku 上的应用程序只能有一个名为的进程web来获取路由的 HTTP 请求。如果您需要另一个 Web 进程,那将是 Heroku 上的另一个应用程序。
web