Files
atlantis/cmd/bootstrap.go
Anubhav Mishra c37e8f3590 adding atlantis bootstrap mode to support getting started with atlant… (#80)
* adding atlantis bootstrap mode to support getting started with atlantis for first time users

* removed unwanted confirm variable

* vendoring dependencies

* more vendoring

* more more and more vendoring

* comment about bootstrap package

* Proposed changes (#84)

* reviewed all the comments

* removing required approval flag since we will default to false
2017-07-18 22:02:49 -07:00

19 lines
346 B
Go

package cmd
import (
"github.com/hootsuite/atlantis/bootstrap"
"github.com/spf13/cobra"
)
var bootstrapCmd = &cobra.Command{
Use: "bootstrap",
Short: "Start a guided tour of Atlantis",
RunE: withErrPrint(func(cmd *cobra.Command, args []string) error {
return bootstrap.Start()
}),
}
func init() {
RootCmd.AddCommand(bootstrapCmd)
}