briareus
Version:
Briareus assists with Feature Branch deploys to ECS
22 lines (18 loc) • 427 B
JavaScript
const fs = require('fs-extra');
const path = require('path');
const cmd = {
setup(yargs, output, cb) {
yargs.command({
command: 'start',
desc: 'Start the Briareus Service',
handler: (argv) => cmd.run({ output: output }, cb)
})
},
run(options, cb) {
const Service = require('../../service');
let service = new Service();
service.start(cb);
}
}
module.exports = cmd;