1.0.5 • Published 3 years ago

dops v1.0.5

Weekly downloads
62
License
MIT
Repository
github
Last release
3 years ago

dops

oclif Version Downloads/week License

Usage

$ npm install -g dops
$ dops COMMAND
running command...
$ dops (-v|--version|version)
dops/1.0.5 linux-x64 node-v15.11.0
$ dops --help [COMMAND]
USAGE
  $ dops COMMAND
...

Commands

dops autocomplete [SHELL]

display autocomplete installation instructions

USAGE
  $ dops autocomplete [SHELL]

ARGUMENTS
  SHELL  shell type

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

EXAMPLES
  $ dops autocomplete
  $ dops autocomplete bash
  $ dops autocomplete zsh
  $ dops autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

dops aws:ec2:ls

List ec2 instances

USAGE
  $ dops aws:ec2:ls

OPTIONS
  -f, --format=format  aws list ec2 instances in json or yaml format
  -h, --help           show CLI help
  -r, --region=region  aws list ec2 instances for specific region or all

See code: src/commands/aws/ec2/ls.ts

dops aws:lambda:ls

List lambda functions

USAGE
  $ dops aws:lambda:ls

OPTIONS
  -f, --format=format  return result in json or yaml format
  -h, --help           show CLI help
  -r, --region=region  aws list lambda functions for specific region or default region

See code: src/commands/aws/lambda/ls.ts

dops aws:profile:config [PROFILE_NAME]

Create new profile

USAGE
  $ dops aws:profile:config [PROFILE_NAME]

OPTIONS
  -f, --format=format  aws list ec2 instances in json or yaml format
  -h, --help           show CLI help
  -r, --region=region  aws list ec2 instances for specific region or all

See code: src/commands/aws/profile/config.ts

dops aws:profile:getAccount

Get aws account name or alias

USAGE
  $ dops aws:profile:getAccount

See code: src/commands/aws/profile/getAccount.ts

dops aws:profile:select

Select aws profile

USAGE
  $ dops aws:profile:select

See code: src/commands/aws/profile/select.ts

dops aws:profile:which

Get active profile

USAGE
  $ dops aws:profile:which

See code: src/commands/aws/profile/which.ts

dops aws:sm:ls

List secrets

USAGE
  $ dops aws:sm:ls

OPTIONS
  -f, --format=format  return result in json or yaml format
  -h, --help           show CLI help
  -r, --region=region  aws list secrets for specific region or all region

See code: src/commands/aws/sm/ls.ts

dops git:fullfetch

List secrets

USAGE
  $ dops git:fullfetch

OPTIONS
  -h, --help  show CLI help

See code: src/commands/git/fullfetch.ts

dops help [COMMAND]

display help for dops

USAGE
  $ dops help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

dops plugins

list installed plugins

USAGE
  $ dops plugins

OPTIONS
  --core  show core plugins

EXAMPLE
  $ dops plugins

See code: @oclif/plugin-plugins

dops plugins:inspect PLUGIN...

displays installation properties of a plugin

USAGE
  $ dops plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] plugin to inspect

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

EXAMPLE
  $ dops plugins:inspect myplugin

See code: @oclif/plugin-plugins

dops plugins:install PLUGIN...

installs a plugin into the CLI

USAGE
  $ dops plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  plugin to install

OPTIONS
  -f, --force    yarn install with force flag
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  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
  $ dops plugins:add

EXAMPLES
  $ dops plugins:install myplugin 
  $ dops plugins:install https://github.com/someuser/someplugin
  $ dops plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

dops plugins:link PLUGIN

links a plugin into the CLI for development

USAGE
  $ dops plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  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.

EXAMPLE
  $ dops plugins:link myplugin

See code: @oclif/plugin-plugins

dops plugins:uninstall PLUGIN...

removes a plugin from the CLI

USAGE
  $ dops plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

ALIASES
  $ dops plugins:unlink
  $ dops plugins:remove

See code: @oclif/plugin-plugins

dops plugins:update

update installed plugins

USAGE
  $ dops plugins:update

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

See code: @oclif/plugin-plugins