Skip to content

Commit

Permalink
added the start command short description
Browse files Browse the repository at this point in the history
  • Loading branch information
ItshMoh committed Sep 30, 2024
1 parent 8f7b019 commit 0d808d8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
3 changes: 3 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,9 @@ _See code: [src/commands/optimize.ts](https://github.com/asyncapi/cli/blob/v2.4.
```
USAGE
$ asyncapi start
DESCRIPTION
main command for starting asyncapi services, currently studio only
```

_See code: [src/commands/start/index.ts](https://github.com/asyncapi/cli/blob/v2.4.1/src/commands/start/index.ts)_
Expand Down
38 changes: 22 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/start/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Command from '../../core/base';
import { Help } from '@oclif/core';

export default class Start extends Command {
static description = '';
static description = 'Start asyncapi-related services, currently studio only';
async run() {
const help = new Help(this.config);
help.showHelp(['start', '--help']);
Expand Down

0 comments on commit 0d808d8

Please sign in to comment.