#!/usr/bin/env node const program = require('commander'); program .command('start ') .description('Start the project with the given environment') .action(require('./commands/start')); program .command('stop ') .description('End the project with the given environment') .action(require('./commands/stop')); program.parse(process.argv);