2019-02-03 04:10:20 -07: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-02-05 21:51:02 -07:00
|
|
|
.option('--disable-queue', 'Disable job queue processing')
|
|
|
|
.option('--only-queue', 'Pocessing job queue only')
|
2019-02-03 04:10:20 -07:00
|
|
|
.option('--quiet', 'Suppress all logs')
|
2019-02-03 20:14:07 -07:00
|
|
|
.option('--verbose', 'Enable all logs')
|
2019-02-03 18:03:49 -07:00
|
|
|
.option('--slow', 'Delay all requests (for debbuging)')
|
2019-02-04 03:41:31 -07:00
|
|
|
.option('--color', 'This option is a dummy for some external program\'s (e.g. forever) issue.')
|
2019-02-03 04:10:20 -07:00
|
|
|
.parse(process.argv);
|
|
|
|
|
2019-02-05 21:51:02 -07:00
|
|
|
if (process.env.MK_DISABLE_QUEUE) program.disableQueue = true;
|
|
|
|
if (process.env.MK_ONLY_QUEUE) program.onlyQueue = true;
|
|
|
|
|
2019-02-03 04:10:20 -07:00
|
|
|
export { program };
|