start-cluster 233 B

12345678
  1. #!/usr/bin/env node
  2. 'use strict';
  3. const debug = require('debug')('egg-bin:start-cluster');
  4. const options = JSON.parse(process.argv[2]);
  5. debug('start cluster options: %j', options);
  6. require(options.framework).startCluster(options);