forked from coop-cloud/abra
28 lines
713 B
Go
28 lines
713 B
Go
package recipe
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// RecipeCommand defines all recipe related sub-commands.
|
|
var RecipeCommand = &cli.Command{
|
|
Name: "recipe",
|
|
Usage: "Manage recipes (for maintainers)",
|
|
ArgsUsage: "<recipe>",
|
|
Aliases: []string{"r"},
|
|
Description: `
|
|
A recipe is a blueprint for an app. It is a bunch of configuration files which
|
|
describe how to deploy and maintain an app. Recipes are maintained by the Co-op
|
|
Cloud community and you can use Abra to read them and create apps for you.
|
|
`,
|
|
Subcommands: []*cli.Command{
|
|
recipeListCommand,
|
|
recipeVersionCommand,
|
|
recipeReleaseCommand,
|
|
recipeNewCommand,
|
|
recipeUpgradeCommand,
|
|
recipeSyncCommand,
|
|
recipeLintCommand,
|
|
},
|
|
}
|