docs: taking a pass on sub cmd docs

This commit is contained in:
decentral1se 2021-10-25 19:58:50 +02:00
parent 766e3008f6
commit bdae61ed51
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 8 additions and 10 deletions

View File

@ -28,9 +28,10 @@ import (
var ( var (
dockerInstallMsg = ` dockerInstallMsg = `
A docker installation cannot be found on %s. This is a required system dependency A docker installation cannot be found on %s. This is a required system
for running Co-op Cloud on your server. If you would like, Abra can attempt to install dependency for running Co-op Cloud on your server. If you would like, Abra can
Docker for you using the upstream non-interactive installation script. attempt to install Docker for you using the upstream non-interactive
installation script.
See the following documentation for more: See the following documentation for more:

View File

@ -13,13 +13,10 @@ var ServerCommand = &cli.Command{
These commands support creating, managing and removing servers using 3rd party These commands support creating, managing and removing servers using 3rd party
integrations. integrations.
Servers can be created and provisioned from scratch so that they are capable of Servers can be created from scratch using the "abra server new" command. If you
hosting Co-op Cloud apps. This can be achieved by using the "abra server new" already have a server, you can add it to your configuration using "abra server
command. add". Abra can provision servers so that they are ready to deploy Co-op Cloud
apps, see available flags on "server add" for more.
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{ Subcommands: []*cli.Command{
serverNewCommand, serverNewCommand,