Skip to content

Latest commit

 

History

History
93 lines (64 loc) · 2.18 KB

labs.md

File metadata and controls

93 lines (64 loc) · 2.18 KB

heroku labs

add/remove experimental features

heroku labs

list experimental features

USAGE
  $ heroku labs [-a <value>] [-r <value>] [--json]

FLAGS
  -a, --app=<value>     app to run command against
  -r, --remote=<value>  git remote of app to use
      --json            display as json

DESCRIPTION
  list experimental features

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

heroku labs:disable FEATURE

disables an experimental feature

USAGE
  $ heroku labs:disable FEATURE [-a <value>] [-r <value>] [--confirm <value>]

ARGUMENTS
  FEATURE  unique identifier or name of the account feature

FLAGS
  -a, --app=<value>      app to run command against
  -r, --remote=<value>   git remote of app to use
  --confirm=<value>

DESCRIPTION
  disables an experimental feature

See code: src/commands/labs/disable.ts

heroku labs:enable FEATURE

enables an experimental feature

USAGE
  $ heroku labs:enable FEATURE [-a <value>] [-r <value>]

ARGUMENTS
  FEATURE  unique identifier or name of the account feature

FLAGS
  -a, --app=<value>     app to run command against
  -r, --remote=<value>  git remote of app to use

DESCRIPTION
  enables an experimental feature

See code: src/commands/labs/enable.ts

heroku labs:info FEATURE

show feature info

USAGE
  $ heroku labs:info FEATURE [-a <value>] [-r <value>] [--json]

ARGUMENTS
  FEATURE  unique identifier or name of the account feature

FLAGS
  -a, --app=<value>     app to run command against
  -r, --remote=<value>  git remote of app to use
      --json            display as json

DESCRIPTION
  show feature info

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