summaryrefslogtreecommitdiff
path: root/src/argv.ts
blob: b5540441cca5a5f14bde2a3cf5de1ea4258cee7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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')
	.option('--only-server', 'Run server only (without job queue processing)')
	.option('--only-queue', 'Pocessing job queue only (without server)')
	.option('--quiet', 'Suppress all logs')
	.option('--verbose', 'Enable all logs')
	.option('--with-log-time', 'Include timestamp for each logs')
	.option('--slow', 'Delay all requests (for debbuging)')
	.option('--color', 'This option is a dummy for some external program\'s (e.g. forever) issue.')
	.parse(process.argv);

if (process.env.MK_ONLY_QUEUE) program.onlyQueue = true;

export { program };