add/remove app features
heroku featuresheroku features:disable FEATUREheroku features:enable FEATUREheroku features:info FEATURE
list available app features
USAGE
$ heroku features -a <value> [--prompt] [-r <value>] [--json]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--json output in json format
GLOBAL FLAGS
--prompt interactively prompt for command arguments and flags
DESCRIPTION
list available app features
See code: src/commands/features/index.ts
disables an app feature
USAGE
$ heroku features:disable FEATURE -a <value> [--prompt] [-r <value>]
ARGUMENTS
FEATURE unique identifier or name of the app feature
FLAGS
-a, --app=<value> (required) 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
disables an app feature
See code: src/commands/features/disable.ts
enables an app feature
USAGE
$ heroku features:enable FEATURE -a <value> [--prompt] [-r <value>]
ARGUMENTS
FEATURE unique identifier or name of the app feature
FLAGS
-a, --app=<value> (required) 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 app feature
See code: src/commands/features/enable.ts
display information about a feature
USAGE
$ heroku features:info FEATURE -a <value> [--prompt] [--json] [-r <value>]
ARGUMENTS
FEATURE unique identifier or name of the app feature
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--json output in json format
GLOBAL FLAGS
--prompt interactively prompt for command arguments and flags
DESCRIPTION
display information about a feature
See code: src/commands/features/info.ts