2019-02-03 20:10:20 +09: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-04 13:37:50 +09:00
|
|
|
.option('--disable-queue', 'Disable job queue')
|
2019-02-03 20:10:20 +09:00
|
|
|
.option('--quiet', 'Suppress all logs')
|
2019-02-04 12:14:07 +09:00
|
|
|
.option('--verbose', 'Enable all logs')
|
2019-02-04 10:03:49 +09:00
|
|
|
.option('--slow', 'Delay all requests (for debbuging)')
|
2019-02-03 20:10:20 +09:00
|
|
|
.parse(process.argv);
|
|
|
|
|
|
|
|
export { program };
|