constructor()

in commands/run.js [166:179]


  constructor(app) {
    this.app = app;
    this.name = 'run';
    this.description = 'run command with profile';
    this.useArgs = '0-n';
    this.supportAfterCommand = true;
    this.options = {
      profile: {
        short: 'p',
        required: false,
        description: `the profile name. default is current profile`
      }
    };
  }