`heroku buildpacks` =================== scripts used to compile apps * [`heroku buildpacks`](#heroku-buildpacks) * [`heroku buildpacks:add BUILDPACK`](#heroku-buildpacksadd-buildpack) * [`heroku buildpacks:clear`](#heroku-buildpacksclear) * [`heroku buildpacks:info BUILDPACK`](#heroku-buildpacksinfo-buildpack) * [`heroku buildpacks:remove [BUILDPACK]`](#heroku-buildpacksremove-buildpack) * [`heroku buildpacks:search [TERM]`](#heroku-buildpackssearch-term) * [`heroku buildpacks:set BUILDPACK`](#heroku-buildpacksset-buildpack) * [`heroku buildpacks:versions BUILDPACK`](#heroku-buildpacksversions-buildpack) ## `heroku buildpacks` list the buildpacks on an app ``` USAGE $ heroku buildpacks -a [--prompt] [-j] [-r ] FLAGS -a, --app= (required) [env: HEROKU_APP] app to run command against -j, --json output in json format -r, --remote= git remote of app to use GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION list the buildpacks on an app ``` _See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/index.ts)_ ## `heroku buildpacks:add BUILDPACK` add new app buildpack, inserting into list of buildpacks if necessary ``` USAGE $ heroku buildpacks:add BUILDPACK -a [--prompt] [-i ] [-j] [-r ] ARGUMENTS BUILDPACK namespace/name of the buildpack FLAGS -a, --app= (required) [env: HEROKU_APP] app to run command against -i, --index= the 1-based index of the URL in the list of URLs -j, --json output in json format -r, --remote= git remote of app to use GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION add new app buildpack, inserting into list of buildpacks if necessary ``` _See code: [src/commands/buildpacks/add.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/add.ts)_ ## `heroku buildpacks:clear` clear all buildpacks set on the app ``` USAGE $ heroku buildpacks:clear -a [--prompt] [-j] [-r ] FLAGS -a, --app= (required) [env: HEROKU_APP] app to run command against -j, --json output in json format -r, --remote= git remote of app to use GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION clear all buildpacks set on the app ``` _See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/clear.ts)_ ## `heroku buildpacks:info BUILDPACK` fetch info about a buildpack ``` USAGE $ heroku buildpacks:info BUILDPACK [--prompt] [-j] ARGUMENTS BUILDPACK namespace/name of the buildpack FLAGS -j, --json output in json format GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION fetch info about a buildpack ``` _See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/info.ts)_ ## `heroku buildpacks:remove [BUILDPACK]` remove a buildpack set on the app ``` USAGE $ heroku buildpacks:remove [BUILDPACK] -a [--prompt] [-i ] [-j] [-r ] ARGUMENTS [BUILDPACK] namespace/name of the buildpack FLAGS -a, --app= (required) [env: HEROKU_APP] app to run command against -i, --index= the 1-based index of the URL to remove from the list of URLs -j, --json output in json format -r, --remote= git remote of app to use GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION remove a buildpack set on the app ``` _See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/remove.ts)_ ## `heroku buildpacks:search [TERM]` search for buildpacks ``` USAGE $ heroku buildpacks:search [TERM] [--prompt] [--description ] [--name ] [--namespace ] ARGUMENTS [TERM] search term that searches across name, namespace, and description FLAGS --description= buildpack description to filter on --name= buildpack names to filter on using a comma separated list --namespace= buildpack namespaces to filter on using a comma separated list GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION search for buildpacks ``` _See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/search.ts)_ ## `heroku buildpacks:set BUILDPACK` ``` USAGE $ heroku buildpacks:set BUILDPACK -a [--prompt] [-i ] [-j] [-r ] ARGUMENTS BUILDPACK namespace/name of the buildpack FLAGS -a, --app= (required) [env: HEROKU_APP] app to run command against -i, --index= the 1-based index of the URL in the list of URLs -j, --json output in json format -r, --remote= git remote of app to use GLOBAL FLAGS --prompt interactively prompt for command arguments and flags ``` _See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/set.ts)_ ## `heroku buildpacks:versions BUILDPACK` list versions of a buildpack ``` USAGE $ heroku buildpacks:versions BUILDPACK [--prompt] ARGUMENTS BUILDPACK namespace/name of the buildpack GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION list versions of a buildpack ``` _See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/buildpacks/versions.ts)_