-
Notifications
You must be signed in to change notification settings - Fork 0
feat(wfctl): add wfctl api extract and wfctl ui scaffold commands #165
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
b67de36
090c9cf
e94f433
e91abec
a2e9701
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,8 +18,10 @@ var commands = map[string]func([]string) error{ | |
| "manifest": runManifest, | ||
| "migrate": runMigrate, | ||
| "build-ui": runBuildUI, | ||
| "ui": runUI, | ||
| "publish": runPublish, | ||
| "deploy": runDeploy, | ||
| "api": runAPI, | ||
|
||
| } | ||
|
|
||
| func usage() { | ||
|
|
@@ -39,8 +41,10 @@ Commands: | |
| manifest Analyze config and report infrastructure requirements | ||
| migrate Manage database schema migrations | ||
| build-ui Build the application UI (npm install + npm run build + validate) | ||
| ui UI tooling (scaffold: generate Vite+React+TypeScript SPA from OpenAPI spec) | ||
| publish Prepare and publish a plugin manifest to the workflow-registry | ||
| deploy Deploy the workflow application (docker, kubernetes, cloud) | ||
| api API tooling (extract: generate OpenAPI 3.0 spec from config) | ||
|
|
||
| Run 'wfctl <command> -h' for command-specific help. | ||
| `, version) | ||
|
|
||
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 command map registers "ui" with runUI function, but this function is not defined anywhere in the codebase. This will cause a compilation error. Either remove this entry or implement the runUI function.