Skip to content

Latest commit

 

History

History
105 lines (72 loc) · 2.49 KB

File metadata and controls

105 lines (72 loc) · 2.49 KB

heroku labs

add/remove experimental features

heroku labs

list experimental features

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

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

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  list experimental features

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

heroku labs:disable FEATURE

disables an experimental feature

USAGE
  $ heroku labs:disable FEATURE [--prompt] [-a <value>] [--confirm <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
  --confirm=<value>

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

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 [--prompt] [-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

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  enables an experimental feature

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

heroku labs:info FEATURE

show feature info

USAGE
  $ heroku labs:info FEATURE [--prompt] [-a <value>] [--json] [-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
      --json            display as json

GLOBAL FLAGS
  --prompt  interactively prompt for command arguments and flags

DESCRIPTION
  show feature info

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