We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a49de09 + 1041b03 commit f34687fCopy full SHA for f34687f
config/default.js
@@ -7,8 +7,8 @@ const KAFKA_CLIENT_KEY_PATH =
7
process.env.KAFKA_CLIENT_CERT_PATH || "./config/kafka_client.key";
8
9
module.exports = {
10
- ROCKETCHAT_ENABLED: false,
11
- VANILLA_ENABLED: true,
+ ROCKETCHAT_ENABLED: Boolean(process.env.ROCKETCHAT_ENABLED === "true"),
+ VANILLA_ENABLED: Boolean(process.env.VANILLA_ENABLED === "true"),
12
LOGGER: {
13
DISABLE_LOGGING: Boolean(process.env.DISABLE_LOGGING === "true"),
14
LOG_LEVEL: process.env.LOG_LEVEL || "debug",
0 commit comments