iceshrimp-legacy/src/argv.ts

20 lines
781 B
TypeScript
Raw Normal View History

2019-02-03 12:10:20 +01:00
import * as program from 'commander';
import * as pkg from '../package.json';
program
.version(pkg.version)
.option('--no-daemons', 'Disable daemon processes (for debbuging)')
.option('--disable-clustering', 'Disable clustering')
2019-03-07 15:07:21 +01:00
.option('--only-server', 'Run server only (without job queue processing)')
.option('--only-queue', 'Pocessing job queue only (without server)')
2019-02-03 12:10:20 +01:00
.option('--quiet', 'Suppress all logs')
2019-02-04 04:14:07 +01:00
.option('--verbose', 'Enable all logs')
.option('--with-log-time', 'Include timestamp for each logs')
2019-02-04 02:03:49 +01:00
.option('--slow', 'Delay all requests (for debbuging)')
2019-02-04 11:41:31 +01:00
.option('--color', 'This option is a dummy for some external program\'s (e.g. forever) issue.')
2019-02-03 12:10:20 +01:00
.parse(process.argv);
if (process.env.MK_ONLY_QUEUE) program.onlyQueue = true;
2019-02-03 12:10:20 +01:00
export { program };