Start collaboration service if not otherwise specified

This commit is contained in:
Tom Moor 2021-11-04 19:39:41 -07:00
parent eb9ff990ac
commit 6df8e9e13f
1 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,11 @@ const normalizedServiceFlag = getArg("services");
// The default is to run all services to make development and OSS installations
// easier to deal with. Separate services are only needed at scale.
const serviceNames = uniq(
(normalizedServiceFlag || env.SERVICES || "websockets,worker,web")
(
normalizedServiceFlag ||
env.SERVICES ||
"collaboration,websockets,worker,web"
)
.split(",")
.map((service) => service.trim())
);