Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "bootstrap [command]", Short: "Install and Configure the basic settings for the environment", Long: `Install and Configure the basic settings for the environment`, ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ( []string, cobra.ShellCompDirective, ) { return nil, cobra.ShellCompDirectiveNoFileComp }, PreRunE: func(cmd *cobra.Command, args []string) error { if err := core.CheckDocker(); err != nil { return err } if err := commands.EnvCheck(); err != nil { return err } return nil }, RunE: func(cmd *cobra.Command, args []string) error { return commands.BootstrapCmd() }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.