2019-02-03 05:10:20 -06:00
|
|
|
import * as program from 'commander';
|
2019-11-01 08:34:26 -05:00
|
|
|
import config from './config';
|
2019-02-03 05:10:20 -06:00
|
|
|
|
|
|
|
program
|
2019-11-01 08:34:26 -05:00
|
|
|
.version(config.version)
|
2019-02-03 05:10:20 -06:00
|
|
|
.option('--no-daemons', 'Disable daemon processes (for debbuging)')
|
|
|
|
.option('--disable-clustering', 'Disable clustering')
|
2019-03-07 08:07:21 -06:00
|
|
|
.option('--only-server', 'Run server only (without job queue processing)')
|
2019-02-09 20:44:08 -06:00
|
|
|
.option('--only-queue', 'Pocessing job queue only (without server)')
|
2019-02-03 05:10:20 -06:00
|
|
|
.option('--quiet', 'Suppress all logs')
|
2019-02-03 21:14:07 -06:00
|
|
|
.option('--verbose', 'Enable all logs')
|
2019-02-06 19:51:50 -06:00
|
|
|
.option('--with-log-time', 'Include timestamp for each logs')
|
2019-02-03 19:03:49 -06:00
|
|
|
.option('--slow', 'Delay all requests (for debbuging)')
|
2019-02-04 04:41:31 -06:00
|
|
|
.option('--color', 'This option is a dummy for some external program\'s (e.g. forever) issue.')
|
2019-02-03 05:10:20 -06:00
|
|
|
.parse(process.argv);
|
|
|
|
|
2019-02-05 22:51:02 -06:00
|
|
|
if (process.env.MK_ONLY_QUEUE) program.onlyQueue = true;
|
2019-04-07 07:50:36 -05: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-05 22:51:02 -06:00
|
|
|
|
2019-02-03 05:10:20 -06:00
|
|
|
export { program };
|