run: async()

in commands/video.js [5:62]


  run: async (context) => {
    if (/^win/.test(process.platform)) {
      try {
        const { run } = require(`./${featureName}/${context.parameters.first}`);
        return run(context);
      } catch (e) {
        context.print.error('Command not found');
      }
    }
    const header = `amplify ${featureName} <subcommand>`;

    const commands = [
      {
        name: 'add',
        description: `Takes you through a CLI flow to add a ${featureName} resource to your local backend`,
      },
      {
        name: 'get-info',
        description: `Gets info for ${featureName} resource from the CloudFormation template`,
      },
      {
        name: 'push',
        description: `Provisions ${featureName} cloud resources and it's dependencies with the latest local developments`,
      },
      {
        name: 'remove',
        description: `Removes ${featureName} resource from your local backend and will remove them on amplify push`,
      },
      {
        name: 'setup-obs',
        description: 'Sets up OBS with your stream settings.',
      },
      {
        name: 'setup-video-player',
        description: 'Sets up a player with your settings.',
      },
      {
        name: 'start',
        description: `Starts your ${featureName} stream from an idle state`,
      },
      {
        name: 'stop',
        description: `Puts your ${featureName} stream into an idle state`,
      },
      {
        name: 'update',
        description: `Takes you through a CLI flow to update a ${featureName} resource`,
      },
      {
        name: 'version',
        description: 'Prints the version of Amplify Video that you are using',
      },
    ];

    context.amplify.showHelp(header, commands);

    context.print.info('');
  },