@heroku-cli/plugin-apps

heroku-cli-plugin-apps ======================


Keywords
heroku-plugin
License
MIT
Install
npm install @heroku-cli/plugin-apps@7.42.0

Documentation

heroku-cli-plugin-apps

oclif Version CircleCI Downloads/week License

Usage

$ npm install -g @heroku-cli/plugin-apps
$ heroku COMMAND
running command...
$ heroku (-v|--version|version)
@heroku-cli/plugin-apps/7.0.1 darwin-x64 node-v10.16.3
$ heroku --help [COMMAND]
USAGE
  $ heroku COMMAND
...

Commands

heroku domains

list domains for an app

USAGE
  $ heroku domains

OPTIONS
  -a, --app=app      (required) app to run command against
  -h, --help         show CLI help
  -x, --extended     show extra columns
  --columns=columns  only show provided columns (comma-separated)
  --csv              output is csv format
  --filter=filter    filter property by partial string matching, ex: name=foo
  --no-header        hide table header from output
  --sort=sort        property to sort by (prepend '-' for descending)

EXAMPLES
  $ heroku domains
  === example Heroku Domain
  example.herokuapp.com

  === example Custom Domains
  Domain Name      DNS Record Type  DNS Target
  www.example.com  CNAME            www.example.herokudns.com

  $ heroku domains --filter 'Domain Name=www.example.com'

See code: src/commands/domains/index.ts

heroku domains:add [HOSTNAME]

add a domain to an app

USAGE
  $ heroku domains:add [HOSTNAME]

OPTIONS
  -a, --app=app    (required) app to run command against
  -h, --help       show CLI help
  -j, --json=json  output in json format
  --wait

EXAMPLE
  heroku domains:add www.example.com

See code: src/commands/domains/add.ts

heroku domains:clear

remove all domains from an app

USAGE
  $ heroku domains:clear

OPTIONS
  -a, --app=app  (required) app to run command against
  -h, --help     show CLI help

EXAMPLE
  heroku domains:clear

See code: src/commands/domains/clear.ts

heroku domains:info [HOSTNAME]

show detailed information for a domain on an app

USAGE
  $ heroku domains:info [HOSTNAME]

OPTIONS
  -a, --app=app  (required) app to run command against
  -h, --help     show CLI help

EXAMPLE
  $ heroku domains:info www.example.com

See code: src/commands/domains/info.ts

heroku domains:remove [HOSTNAME]

remove a domain from an app

USAGE
  $ heroku domains:remove [HOSTNAME]

OPTIONS
  -a, --app=app  (required) app to run command against
  -h, --help     show CLI help

EXAMPLE
  heroku domains:remove www.example.com

See code: src/commands/domains/remove.ts

heroku domains:wait [HOSTNAME]

wait for domain to be active for an app

USAGE
  $ heroku domains:wait [HOSTNAME]

OPTIONS
  -a, --app=app  (required) app to run command against
  -h, --help     show CLI help

See code: src/commands/domains/wait.ts