0.9.0-pre.0 • Published 2 years ago

@amse/cli v0.9.0-pre.0

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
2 years ago

amse cli

CLI to control amse servers

Version License

Usage

$ npm install -g @amse/cli
$ amse COMMAND
running command...
$ amse (--version)
@amse/cli/0.9.0-pre.0 linux-x64 node-v17.3.0
$ amse --help [COMMAND]
USAGE
  $ amse COMMAND
...

Commands

amse add-user EMAIL PASSWORD [NAME]

describe the command here

USAGE
  $ amse add-user [EMAIL] [PASSWORD] [NAME] [-a]

FLAGS
  -a, --admin

DESCRIPTION
  describe the command here

EXAMPLES
  $ amse add-user

See code: dist/commands/add-user.ts

amse autocomplete [SHELL]

display autocomplete installation instructions

USAGE
  $ amse autocomplete [SHELL] [-r]

ARGUMENTS
  SHELL  shell type

FLAGS
  -r, --refresh-cache  Refresh cache (ignores displaying instructions)

DESCRIPTION
  display autocomplete installation instructions

EXAMPLES
  $ amse autocomplete

  $ amse autocomplete bash

  $ amse autocomplete zsh

  $ amse autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

amse commands

list all the commands

USAGE
  $ amse commands [--json] [-h] [--hidden] [--columns <value> | -x] [--sort <value>] [--filter <value>]
    [--output csv|json|yaml |  | [--csv | --no-truncate]] [--no-header | ]

FLAGS
  -h, --help         Show CLI help.
  -x, --extended     show extra columns
  --columns=<value>  only show provided columns (comma-separated)
  --csv              output is csv format [alias: --output=csv]
  --filter=<value>   filter property by partial string matching, ex: name=foo
  --hidden           show hidden commands
  --no-header        hide table header from output
  --no-truncate      do not truncate output to fit screen
  --output=<option>  output in a more machine friendly format
                     <options: csv|json|yaml>
  --sort=<value>     property to sort by (prepend '-' for descending)

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  list all the commands

See code: @oclif/plugin-commands

amse help [COMMAND]

Display help for amse.

USAGE
  $ amse help [COMMAND] [-n]

ARGUMENTS
  COMMAND  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for amse.

See code: @oclif/plugin-help

amse install [NAME]

installs a new amse server

USAGE
  $ amse install [NAME] [-p <value>] [-q <value>]

ARGUMENTS
  NAME  [default: amse-server] name of the new amse server

FLAGS
  -p, --httpPort=<value>   [default: 80] to which http-port should amse bind
  -q, --httpsPort=<value>  [default: 443] to which https-port should amse bind

DESCRIPTION
  installs a new amse server

EXAMPLES
  $ amse install

See code: dist/commands/install.ts

amse start

start an amse server

USAGE
  $ amse start [--no-detach]

FLAGS
  --no-detach

DESCRIPTION
  start an amse server

EXAMPLES
  $ amse start

See code: dist/commands/start.ts

amse stop

stop an amse server

USAGE
  $ amse stop

DESCRIPTION
  stop an amse server

EXAMPLES
  $ amse stop

See code: dist/commands/stop.ts