abra/cli/server/server.go

28 lines
752 B
Go
Raw Normal View History

package server
import (
"github.com/urfave/cli"
)
2021-08-02 20:03:53 +00:00
// ServerCommand defines the `abra server` command and its subcommands
var ServerCommand = cli.Command{
Name: "server",
Aliases: []string{"s"},
2021-12-27 15:12:29 +00:00
Usage: "Manage servers",
Description: `
2021-10-22 11:36:30 +00:00
These commands support creating, managing and removing servers using 3rd party
2021-10-22 11:35:53 +00:00
integrations.
2021-10-25 17:58:50 +00:00
Servers can be created from scratch using the "abra server new" command. If you
already have a server, you can add it to your configuration using "abra server
add". Abra can provision servers so that they are ready to deploy Co-op Cloud
apps, see available flags on "server add" for more.
`,
Subcommands: []cli.Command{
serverNewCommand,
serverAddCommand,
serverListCommand,
serverRemoveCommand,
},
}