25 lines
686 B
TypeScript
25 lines
686 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
const envOption = {
|
|
onlyQueue: false,
|
|
onlyServer: false,
|
|
noDaemons: false,
|
|
disableClustering: false,
|
|
verbose: false,
|
|
withLogTime: false,
|
|
quiet: false,
|
|
};
|
|
|
|
for (const key of Object.keys(envOption) as (keyof typeof envOption)[]) {
|
|
if (process.env['MK_' + key.replace(/[A-Z]/g, letter => `_${letter}`).toUpperCase()]) envOption[key] = true;
|
|
}
|
|
|
|
if (process.env.NODE_ENV === 'test') envOption.disableClustering = true;
|
|
if (process.env.NODE_ENV === 'test') envOption.quiet = true;
|
|
if (process.env.NODE_ENV === 'test') envOption.noDaemons = true;
|
|
|
|
export { envOption };
|