-
Notifications
You must be signed in to change notification settings - Fork 2
docs(arc-api): add CLI page #136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,152 @@ | ||||||
| @sourceloop/cli / | ||||||
|
|
||||||
| # @sourceloop-cli | ||||||
|
|
||||||
| <a style="position: relative; top: 10px;" href="https://sourcefuse.github.io/arc-docs/arc-api-docs" target="_blank"><img src="https://github.com/sourcefuse/loopback4-microservice-catalog/blob/master/docs/assets/logo-dark-bg.png?raw=true" alt="ARC By SourceFuse logo" title="ARC By SourceFuse" align="right" width="150" /></a> | ||||||
|
|
||||||
| This is a `sourceloop` based cli that provides commands to scaffold a monorepo, add extensions, facades and microservices to it. | ||||||
|
|
||||||
| ## Installation | ||||||
|
|
||||||
| ```shell | ||||||
|
||||||
| npm install @sourceloop/cli | ||||||
| ``` | ||||||
|
|
||||||
| After installation, use either sl or arc to run any of the CLI commands. | ||||||
|
|
||||||
| ## Commands | ||||||
|
|
||||||
| <!-- commands --> | ||||||
| - sl autocomplete | ||||||
| - sl cdk | ||||||
| - sl extension | ||||||
| - sl help | ||||||
|
||||||
| - sl help | |
| - sl help |
Copilot
AI
Dec 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 58 has an unnecessary trailing space after "(lambda)" that should be removed for consistency. The other option lines in the documentation (lines 56, 57, 59-61) don't have trailing spaces, so this line should match that pattern.
| -i, --iac=(lambda) | |
| -i, --iac=(lambda) |
Copilot
AI
Dec 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 59 has an unnecessary trailing space after "--overwriteDockerfile" that should be removed for consistency. The other option lines in the documentation don't have trailing spaces, so this line should match that pattern.
| -o, --overwriteDockerfile | |
| -o, --overwriteDockerfile |
Copilot
AI
Dec 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 136 has an unnecessary trailing space after "--help" that should be removed for consistency. The other option lines in the documentation don't have trailing spaces, so this line should match that pattern.
| --help | |
| --help |
Copilot
AI
Dec 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 137 has an unnecessary trailing space after "--integrateWithBackstage" that should be removed for consistency. The other option lines in the documentation don't have trailing spaces, so this line should match that pattern.
| --integrateWithBackstage | |
| --integrateWithBackstage |
Copilot
AI
Dec 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 139 has an unnecessary trailing space after "--jenkinsfile" that should be removed for consistency. The other option lines in the documentation don't have trailing spaces, so this line should match that pattern.
| --jenkinsfile | |
| --jenkinsfile |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| title: Packages | ||
| nav: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ??
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Tyagi-Sunny Sir,this adds a single navigation item labeled "CLI" that links to the file cli.md . |
||
| - CLI: cli.md | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The heading
# @sourceloop-cliis inconsistent with the package name shown elsewhere in the document. The package name is@sourceloop/cli(with a forward slash), as seen in line 1, line 12, and line 96. The heading should be updated to match the actual package name@sourceloop/clifor consistency.