Skip to content

Commit 0b8afb5

Browse files
committed
feat: add create project command stub
Signed-off-by: Chris Goller <[email protected]>
1 parent 6f18158 commit 0b8afb5

File tree

5 files changed

+73
-4
lines changed

5 files changed

+73
-4
lines changed

pkg/cmd/list/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func NewCmdList() *cobra.Command {
1616
},
1717
}
1818

19-
cmd.AddCommand(NewCmdProjects())
19+
cmd.AddCommand(NewCmdProjects("projects", "p"))
2020
cmd.AddCommand(NewCmdBuilds())
2121

2222
return cmd

pkg/cmd/list/projects.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ import (
2121
"github.com/spf13/cobra"
2222
)
2323

24-
func NewCmdProjects() *cobra.Command {
24+
func NewCmdProjects(commandName, commandAlias string) *cobra.Command {
2525
var (
2626
token string
2727
outputFormat string
2828
)
2929

3030
cmd := &cobra.Command{
31-
Use: "projects",
32-
Aliases: []string{"p"},
31+
Use: commandName,
32+
Aliases: []string{commandAlias},
3333
Short: "List depot projects",
3434
RunE: func(cmd *cobra.Command, args []string) error {
3535
token, err := helpers.ResolveToken(context.Background(), token)

pkg/cmd/projects/create.go

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// Creates a depot project.
2+
package projects
3+
4+
import (
5+
"context"
6+
"fmt"
7+
8+
"github.com/depot/cli/pkg/helpers"
9+
"github.com/spf13/cobra"
10+
)
11+
12+
func NewCmdCreate() *cobra.Command {
13+
var (
14+
token string
15+
region string
16+
volumeSizeGB int
17+
)
18+
19+
cmd := &cobra.Command{
20+
Use: "create",
21+
Aliases: []string{"c"},
22+
Hidden: true,
23+
Short: "Create depot project",
24+
RunE: func(cmd *cobra.Command, args []string) error {
25+
token, err := helpers.ResolveToken(context.Background(), token)
26+
if err != nil {
27+
return err
28+
}
29+
30+
if token == "" {
31+
return fmt.Errorf("missing API token, please run `depot login`")
32+
}
33+
34+
//projectClient := api.NewProjectsClient()
35+
return nil
36+
},
37+
}
38+
39+
flags := cmd.Flags()
40+
flags.StringVar(&token, "token", "", "Depot token")
41+
flags.StringVar(&region, "region", "us-east-1", "Depot project region location")
42+
flags.IntVar(&volumeSizeGB, "volume-size", 50, "Volume size in GB")
43+
44+
return cmd
45+
}

pkg/cmd/projects/projects.go

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package projects
2+
3+
import (
4+
"github.com/depot/cli/pkg/cmd/list"
5+
"github.com/spf13/cobra"
6+
)
7+
8+
func NewCmdProjects() *cobra.Command {
9+
cmd := &cobra.Command{
10+
Use: "projects",
11+
Aliases: []string{"p"},
12+
Short: "Create or display depot project information",
13+
RunE: func(cmd *cobra.Command, args []string) error {
14+
return cmd.Help()
15+
},
16+
}
17+
18+
cmd.AddCommand(NewCmdCreate())
19+
cmd.AddCommand(list.NewCmdProjects("list", "ls"))
20+
21+
return cmd
22+
}

pkg/cmd/root/root.go

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"github.com/depot/cli/pkg/cmd/list"
1515
loginCmd "github.com/depot/cli/pkg/cmd/login"
1616
logout "github.com/depot/cli/pkg/cmd/logout"
17+
"github.com/depot/cli/pkg/cmd/projects"
1718
"github.com/depot/cli/pkg/cmd/pull"
1819
"github.com/depot/cli/pkg/cmd/push"
1920
"github.com/depot/cli/pkg/cmd/registry"
@@ -60,6 +61,7 @@ func NewCmdRoot(version, buildDate string) *cobra.Command {
6061
cmd.AddCommand(versionCmd.NewCmdVersion(version, buildDate))
6162
cmd.AddCommand(dockerCmd.NewCmdConfigureDocker(dockerCli))
6263
cmd.AddCommand(registry.NewCmdRegistry())
64+
cmd.AddCommand(projects.NewCmdProjects())
6365

6466
return cmd
6567
}

0 commit comments

Comments
 (0)