cli: enable forwarding of backend flags for repo start

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-04-06 12:58:19 +02:00
parent d2091c6fe0
commit fd4fddad77
8 changed files with 60 additions and 24 deletions
+7 -4
View File
@@ -83,12 +83,15 @@ Usage: backstage-cli repo start [options] [packageName...]
Starts packages in the repo for local development
Arguments:
packageName Run the specified package instead of the defaults.
packageName Run the specified package instead of the defaults.
Options:
--config <path> Config files to load instead of app-config.yaml (default: [])
--plugin <pluginId> Start the dev entry-point for any matching plugin package in the repo (default: [])
--link <path> Link an external workspace for module resolution
--plugin <pluginId> Start the dev entry-point for any matching plugin package in the repo (default: [])
--config <path> Config files to load instead of app-config.yaml (default: [])
--inspect [host] Enable debugger in Node.js environments. Applies to backend package only
--inspect-brk [host] Enable debugger in Node.js environments, breaking before code starts. Applies to backend package only
--require <path...> Add a --require argument to the node process. Applies to backend package only
--link <path> Link an external workspace for module resolution
```
## repo build