forked from toolshed/abra
.gitea
cli
app
catalogue
internal
recipe
record
server
add.go
list.go
new.go
remove.go
server.go
cli.go
cmd
pkg
scripts
tests
.drone.yml
.e2e.env.sample
.envrc.sample
.gitignore
.goreleaser.yml
AUTHORS.md
LICENSE
Makefile
README.md
go.mod
go.sum
renovate.json
28 lines
752 B
Go
28 lines
752 B
Go
package server
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// ServerCommand defines the `abra server` command and its subcommands
|
|
var ServerCommand = cli.Command{
|
|
Name: "server",
|
|
Aliases: []string{"s"},
|
|
Usage: "Manage servers",
|
|
Description: `
|
|
These commands support creating, managing and removing servers using 3rd party
|
|
integrations.
|
|
|
|
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,
|
|
},
|
|
}
|