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-03-07 23:07:21 +09:00
|
|
|
.option('--only-server', 'Run server only (without job queue processing)')
|
2019-02-10 11:44:08 +09:00
|
|
|
.option('--only-queue', 'Pocessing job queue only (without server)')
|
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-07 10:51:50 +09:00
|
|
|
.option('--with-log-time', 'Include timestamp for each logs')
|
2019-02-04 10:03:49 +09:00
|
|
|
.option('--slow', 'Delay all requests (for debbuging)')
|
2019-02-04 19:41:31 +09:00
|
|
|
.option('--color', 'This option is a dummy for some external program\'s (e.g. forever) issue.')
|
2019-02-03 20:10:20 +09:00
|
|
|
.parse(process.argv);
|
|
|
|
|
2019-02-06 13:51:02 +09:00
|
|
|
if (process.env.MK_ONLY_QUEUE) program.onlyQueue = true;
|
2019-04-07 21:50:36 +09:00
|
|
|
if (process.env.NODE_ENV === 'test') program.disableClustering = true;
|
|
|
|
if (process.env.NODE_ENV === 'test') program.quiet = true;
|
|
|
|
if (process.env.NODE_ENV === 'test') program.noDaemons = true;
|
2019-02-06 13:51:02 +09:00
|
|
|
|
2019-02-03 20:10:20 +09:00
|
|
|
export { program };
|