0.7.2 • Published 7 months ago

@hereya/cli v0.7.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

hereya-cli

Package manager for infrastructure libraries

oclif CircleCI GitHub license

Usage

$ npm install -g @hereya/cli
$ hereya COMMAND
running command...
$ hereya (--version)
@hereya/cli/0.7.2 linux-x64 node-v18.18.0
$ hereya --help [COMMAND]
USAGE
  $ hereya COMMAND
...

Commands

hereya add PACKAGE

add a package to the project

USAGE
  $ hereya add PACKAGE -w <value> -p <value> [--parameters <value>]

ARGUMENTS
  PACKAGE  name of the package to add

FLAGS
  -p, --project=<value>    (required) name of the project to add the package to
  -w, --workspace=<value>  (required) name of the workspace to add the package to
  --parameters=<value>...  parameters for the package, in the form of 'key=value'

DESCRIPTION
  add a package to the project

EXAMPLES
  $ hereya add

See code: dist/commands/add.ts

hereya cdk exec NAME

deploy a CDK stack

USAGE
  $ hereya cdk exec NAME [-w <value>] [-p <value>] [--parameters <value>] [--destroy]

ARGUMENTS
  NAME  name of the package or module to add

FLAGS
  -p, --project=<value>    name of the project to add the package to
  -w, --workspace=<value>  name of the workspace to add the module/package to
  --destroy                destroy the stack
  --parameters=<value>...  parameters for the module, in the form of 'key=value'

DESCRIPTION
  deploy a CDK stack

EXAMPLES
  $ hereya cdk exec -w dev mymodule

See code: dist/commands/cdk/exec.ts

hereya help [COMMANDS]

Display help for hereya.

USAGE
  $ hereya help [COMMANDS] [-n]

ARGUMENTS
  COMMANDS  Command to show help for.

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

DESCRIPTION
  Display help for hereya.

See code: @oclif/plugin-help

hereya install

deploy resources to support hereya operations in AWS

USAGE
  $ hereya install

DESCRIPTION
  deploy resources to support hereya operations in AWS

EXAMPLES
  $ hereya install

See code: dist/commands/install.ts

hereya plugins

List installed plugins.

USAGE
  $ hereya plugins [--json] [--core]

FLAGS
  --core  Show core plugins.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  List installed plugins.

EXAMPLES
  $ hereya plugins

See code: @oclif/plugin-plugins

hereya plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ hereya plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ hereya plugins add

EXAMPLES
  $ hereya plugins:install myplugin 

  $ hereya plugins:install https://github.com/someuser/someplugin

  $ hereya plugins:install someuser/someplugin

hereya plugins:inspect PLUGIN...

Displays installation properties of a plugin.

USAGE
  $ hereya plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] Plugin to inspect.

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Displays installation properties of a plugin.

EXAMPLES
  $ hereya plugins:inspect myplugin

See code: @oclif/plugin-plugins

hereya plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ hereya plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ hereya plugins add

EXAMPLES
  $ hereya plugins:install myplugin 

  $ hereya plugins:install https://github.com/someuser/someplugin

  $ hereya plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

hereya plugins:link PLUGIN

Links a plugin into the CLI for development.

USAGE
  $ hereya plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Links a plugin into the CLI for development.
  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
  command will override the user-installed or core plugin implementation. This is useful for development work.


EXAMPLES
  $ hereya plugins:link myplugin

See code: @oclif/plugin-plugins

hereya plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ hereya plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ hereya plugins unlink
  $ hereya plugins remove

hereya plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ hereya plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ hereya plugins unlink
  $ hereya plugins remove

See code: @oclif/plugin-plugins

hereya plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ hereya plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ hereya plugins unlink
  $ hereya plugins remove

hereya plugins update

Update installed plugins.

USAGE
  $ hereya plugins update [-h] [-v]

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Update installed plugins.

See code: @oclif/plugin-plugins

hereya project init NAME

initialize a new project

USAGE
  $ hereya project init NAME -w <value>

ARGUMENTS
  NAME  name of the project to create

FLAGS
  -w, --workspace=<value>  (required) name of the workspace to set as current

DESCRIPTION
  initialize a new project

EXAMPLES
  $ hereya project init

See code: dist/commands/project/init.ts

hereya uninstall

remove hereya resources from your AWS account

USAGE
  $ hereya uninstall

DESCRIPTION
  remove hereya resources from your AWS account

EXAMPLES
  $ hereya uninstall

See code: dist/commands/uninstall.ts

hereya workspace add MODULE

add a module to a workspace

USAGE
  $ hereya workspace add MODULE -w <value> [-f] [--parameters <value>]

ARGUMENTS
  MODULE  name of the module to add

FLAGS
  -f, --force              force redeployment of the module
  -w, --workspace=<value>  (required) name of the workspace to add the module to
  --parameters=<value>...  parameters for the module, in the form of 'key=value'

DESCRIPTION
  add a module to a workspace

EXAMPLES
  $ hereya workspace add -w dev mymodule

  $ hereya workspace add -w dev mymodule --parameters foo=bar --parameters baz=qux

See code: dist/commands/workspace/add.ts

hereya workspace create NAME

create a new workspace

USAGE
  $ hereya workspace create NAME

ARGUMENTS
  NAME  name of the workspace to create

DESCRIPTION
  create a new workspace

EXAMPLES
  $ hereya workspace create dev

See code: dist/commands/workspace/create.ts

hereya workspace remove MODULE

remove a module from a workspace

USAGE
  $ hereya workspace remove MODULE -w <value> [--parameters <value>]

ARGUMENTS
  MODULE  name of the module to add

FLAGS
  -w, --workspace=<value>  (required) name of the workspace to remove the module from
  --parameters=<value>...  parameters for the module, in the form of 'key=value'

DESCRIPTION
  remove a module from a workspace

EXAMPLES
  $ hereya workspace remove mymodule -w dev

See code: dist/commands/workspace/remove.ts

0.7.2

7 months ago

0.7.1

7 months ago

0.7.0

7 months ago

0.5.0

7 months ago

0.4.0

7 months ago

0.3.2

7 months ago

0.3.1

7 months ago

0.3.0

7 months ago

0.2.5

7 months ago

0.2.4

7 months ago

0.2.3

7 months ago

0.2.2

7 months ago

0.2.1

7 months ago

0.2.0

7 months ago

0.1.0

7 months ago

0.0.7

7 months ago

0.0.6

7 months ago