Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions cmd/apps/dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,8 @@ func newDevRemoteCmd() *cobra.Command {
)

cmd := &cobra.Command{
Use: "dev-remote",
Short: "Run AppKit app locally with WebSocket bridge to remote server",
Hidden: true,
Use: "dev-remote",
Short: "Run AppKit app locally with WebSocket bridge to remote server",
Long: `Run AppKit app locally with WebSocket bridge to remote server.
Starts a local Vite development server and establishes a WebSocket bridge
Expand Down
5 changes: 2 additions & 3 deletions cmd/apps/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,8 @@ func newInitCmd() *cobra.Command {
)

cmd := &cobra.Command{
Use: "init",
Short: "Initialize a new AppKit application from a template",
Hidden: true,
Use: "init",
Short: "Initialize a new AppKit application from a template",
Long: `Initialize a new AppKit application from a template.
When run without arguments, uses the default AppKit template and an interactive prompt
Expand Down
5 changes: 2 additions & 3 deletions cmd/apps/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,8 @@ func newManifestCmd() *cobra.Command {
)

cmd := &cobra.Command{
Use: "manifest",
Short: "Print template manifest with available plugins and required resources",
Hidden: true,
Use: "manifest",
Short: "Print template manifest with available plugins and required resources",
Long: `Resolves a template (default AppKit repo or --template URL), locates appkit.plugins.json,
and prints its raw contents to stdout. No workspace authentication is required.
Expand Down
5 changes: 2 additions & 3 deletions cmd/apps/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ import (

func newValidateCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "validate",
Short: "Validate a Databricks App project",
Hidden: true,
Use: "validate",
Short: "Validate a Databricks App project",
Long: `Validate a Databricks App project by running build, typecheck, and lint checks.
This command detects the project type and runs the appropriate validation:
Expand Down
Loading