paratrooper
Version:
Deployment CLI for Node on Ubuntu (nginx & upstart) with Git
16 lines (11 loc) • 302 B
JavaScript
;
var omelette = require('omelette');
var command = omelette('paratrooper|pt <action>');
command.on('action', actionReply);
module.exports = function () {
command.init();
command.setupShellInitFile();
};
function actionReply() {
return this.reply(['init', 'deploy', 'remove']);
}