Documentation ¶
Index ¶
Constants ¶
View Source
const ( // EvtSetupStarted is emitted when `buffalo setup` starts EvtSetupStarted = "buffalo:setup:started" // EvtSetupErr is emitted if `buffalo setup` fails EvtSetupErr = "buffalo:setup:err" // EvtSetupFinished is emitted when `buffalo setup` finishes EvtSetupFinished = "buffalo:setup:finished" )
Variables ¶
View Source
var DestroyCmd = &cobra.Command{ Use: "destroy", Short: "Destroy generated components", Aliases: []string{"d"}, }
DestroyCmd destroys generated code
View Source
var RootCmd = &cobra.Command{ SilenceErrors: true, Use: "buffalo", Short: "Build Buffalo applications with ease", PersistentPreRunE: func(cmd *cobra.Command, args []string) error { if err := buffalo.LoadPlugins(); err != nil { return err } isFreeCommand := false for _, freeCmd := range anywhereCommands { if freeCmd == cmd.Name() { isFreeCommand = true } } if isFreeCommand { return nil } if !insideBuffaloProject() { return fmt.Errorf("you need to be inside your buffalo project path to run this command") } return nil }, }
RootCmd is the hook for all of the other commands in the buffalo binary.
Functions ¶
Types ¶
This section is empty.
Source Files ¶
Click to show internal directories.
Click to hide internal directories.