feat: expand wizard setup flow
This commit is contained in:
21
src/commands/update.ts
Normal file
21
src/commands/update.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { RuntimeEnv } from "../runtime.js";
|
||||
import { defaultRuntime } from "../runtime.js";
|
||||
import { runConfigureWizard } from "./configure.js";
|
||||
|
||||
export async function updateCommand(runtime: RuntimeEnv = defaultRuntime) {
|
||||
await runConfigureWizard(
|
||||
{
|
||||
command: "update",
|
||||
sections: [
|
||||
"workspace",
|
||||
"model",
|
||||
"gateway",
|
||||
"daemon",
|
||||
"providers",
|
||||
"skills",
|
||||
"health",
|
||||
],
|
||||
},
|
||||
runtime,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user