-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathroot.go
96 lines (75 loc) · 2.31 KB
/
root.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package main
import (
"github.com/spf13/cobra"
"github.com/suborbital/subo/subo/command"
"github.com/suborbital/subo/subo/features"
"github.com/suborbital/subo/subo/release"
)
func rootCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "subo",
Short: "Suborbital Development Platform CLI",
Version: release.Version(),
Long: `Subo is the full toolchain for using and managing Suborbital Extension Engine (SE2) tools.`,
RunE: func(cmd *cobra.Command, args []string) error {
cmd.Help()
return nil
},
}
cmd.SetVersionTemplate("Subo CLI v{{.Version}}\n")
// create commands.
create := &cobra.Command{
Use: "create",
Short: "create a plugin, project, or handler",
Long: `create a new E2Core project, WebAssembly plugin or handler`,
}
if features.EnableReleaseCommands {
create.AddCommand(command.CreateReleaseCmd())
}
create.AddCommand(command.CreateProjectCmd())
create.AddCommand(command.CreatePluginCmd())
// TODO: turn into create workflow command
// Ref: https://github.com/suborbital/subo/issues/347
// create.AddCommand(command.CreateHandlerCmd()).
// se2 related commands.
cmd.AddCommand(se2Command())
// docs related commands.
cmd.AddCommand(docsCommand())
cmd.AddCommand(create)
cmd.AddCommand(command.BuildCmd())
// TODO: Re-enable when dev is updated to work with e2core
// cmd.AddCommand(command.DevCmd())
cmd.AddCommand(command.CleanCmd())
if features.EnableRegistryCommands {
cmd.AddCommand(command.PushCmd())
cmd.AddCommand(command.DeployCmd())
}
return cmd
}
func se2Command() *cobra.Command {
se2 := &cobra.Command{
Use: "se2",
Short: "SE2 related resources",
Long: `manage Suborbital Extension Engine (SE2) resources`,
}
create := &cobra.Command{
Use: "create",
Short: "create SE2 resources",
Long: `create Suborbital Extension Engine (SE2) resources`,
}
create.AddCommand(command.SE2CreateTokenCommand())
se2.AddCommand(create)
se2.AddCommand(command.SE2DeployCommand())
se2.AddCommand(command.SE2MigrateStorageCommand())
return se2
}
func docsCommand() *cobra.Command {
docs := &cobra.Command{
Use: "docs",
Short: "documentation generation resources",
Long: "test and generate code embedded markdown documentation",
}
docs.AddCommand(command.DocsBuildCmd())
docs.AddCommand(command.DocsTestCmd())
return docs
}