abra/cli/server/server.go

31 lines
840 B
Go
Raw Normal View History

package server
import (
"github.com/urfave/cli/v2"
)
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-10-20 15:52:54 +00:00
Usage: "Manage servers via 3rd party providers",
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.
Servers can be created and provisioned from scratch so that they are capable of
2021-10-22 11:37:31 +00:00
hosting Co-op Cloud apps. This can be achieved by using the "abra server new"
2021-10-22 11:35:53 +00:00
command.
If you already have a server, you can add it to your configuration using "abra
server add". Abra can provision existing servers also, see available flags on
"server add" for more.
`,
Subcommands: []*cli.Command{
serverNewCommand,
serverAddCommand,
serverListCommand,
serverRemoveCommand,
},
}