forked from aws/copilot-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
100 lines (83 loc) · 2.55 KB
/
main.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
97
98
99
100
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Package main contains the root command.
package main
import (
"errors"
"os"
"github.com/aws/copilot-cli/cmd/copilot/template"
"github.com/aws/copilot-cli/internal/pkg/cli"
"github.com/aws/copilot-cli/internal/pkg/term/color"
"github.com/aws/copilot-cli/internal/pkg/term/log"
"github.com/aws/copilot-cli/internal/pkg/version"
"github.com/spf13/cobra"
)
type actionRecommender interface {
RecommendActions() string
}
type exitCodeError interface {
ExitCode() int
}
func init() {
color.DisableColorBasedOnEnvVar()
cobra.EnableCommandSorting = false // Maintain the order in which we add commands.
}
func main() {
cmd := buildRootCmd()
if err := cmd.Execute(); err != nil {
var ac actionRecommender
var exitCodeErr exitCodeError
if errors.As(err, &ac) {
log.Infoln(ac.RecommendActions())
}
if errors.As(err, &exitCodeErr) {
log.Infoln(err.Error())
os.Exit(exitCodeErr.ExitCode())
}
log.Errorln(err.Error())
os.Exit(1)
}
}
func buildRootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "copilot",
Short: shortDescription,
Example: `
Displays the help menu for the "init" command.
/code $ copilot init --help`,
PersistentPreRun: func(cmd *cobra.Command, args []string) {
// If we don't set a Run() function the help menu doesn't show up.
// See https://github.com/spf13/cobra/issues/790
},
SilenceUsage: true,
SilenceErrors: true,
}
cmd.SetOut(log.OutputWriter)
cmd.SetErr(log.DiagnosticWriter)
// Sets version for --version flag. Version command gives more detailed
// version information.
cmd.Version = version.Version
cmd.SetVersionTemplate("copilot version: {{.Version}}\n")
// NOTE: Order for each grouping below is significant in that it affects help menu output ordering.
// "Getting Started" command group.
cmd.AddCommand(cli.BuildInitCmd())
cmd.AddCommand(cli.BuildDocsCmd())
// "Develop" command group.
cmd.AddCommand(cli.BuildAppCmd())
cmd.AddCommand(cli.BuildEnvCmd())
cmd.AddCommand(cli.BuildSvcCmd())
cmd.AddCommand(cli.BuildJobCmd())
cmd.AddCommand(cli.BuildTaskCmd())
cmd.AddCommand(cli.BuildRunLocalCmd())
// "Extend" command group
cmd.AddCommand(cli.BuildStorageCmd())
cmd.AddCommand(cli.BuildSecretCmd())
// "Settings" command group.
cmd.AddCommand(cli.BuildVersionCmd())
cmd.AddCommand(cli.BuildCompletionCmd(cmd))
// "Release" command group.
cmd.AddCommand(cli.BuildPipelineCmd())
cmd.AddCommand(cli.BuildDeployCmd())
cmd.SetUsageTemplate(template.RootUsage)
return cmd
}