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
ただし、実行すると、2 つのうちの最後のみが実行されます。これを行う方法はありますか?
webHeroku上のアプリケーションは、ルーティングされたHTTPリクエストを取得するという名前のプロセスを1つだけ持つことができます。別のWebプロセスが必要な場合は、Herokuの別のアプリケーションになります。
web