我在Procfile中定义了三个过程。有时,我只想运行其中两个。有命令吗?

$ foreman start process_1 process_2
ERROR: "foreman start" was called with arguments ["process_1", "process_2"]
Usage: "foreman start [PROCESS]"

最佳答案

您可以使用 -c or --concurrency option并仅指定要启动的进程:

$ foreman start -c process_1=1,process_2=1

关于ruby - 工头开始多个流程?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31094759/

10-11 06:40