Skip to content

Latest commit

 

History

History
145 lines (100 loc) · 4.04 KB

buildpacks.md

File metadata and controls

145 lines (100 loc) · 4.04 KB

heroku buildpacks

scripts used to compile apps

heroku buildpacks

display the buildpacks for an app

USAGE
  $ heroku buildpacks

OPTIONS
  -a, --app=app        (required) app to run command against
  -r, --remote=remote  git remote of app to use

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:add BUILDPACK

add new app buildpack, inserting into list of buildpacks if necessary

USAGE
  $ heroku buildpacks:add BUILDPACK

ARGUMENTS
  BUILDPACK  namespace/name of the buildpack

OPTIONS
  -a, --app=app        (required) app to run command against
  -i, --index=index    the 1-based index of the URL in the list of URLs
  -r, --remote=remote  git remote of app to use

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:clear

clear all buildpacks set on the app

USAGE
  $ heroku buildpacks:clear

OPTIONS
  -a, --app=app        (required) app to run command against
  -r, --remote=remote  git remote of app to use

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:info BUILDPACK

fetch info about a buildpack

USAGE
  $ heroku buildpacks:info BUILDPACK

ARGUMENTS
  BUILDPACK  namespace/name of the buildpack

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:remove [BUILDPACK]

remove a buildpack set on the app

USAGE
  $ heroku buildpacks:remove [BUILDPACK]

ARGUMENTS
  BUILDPACK  namespace/name of the buildpack

OPTIONS
  -a, --app=app        (required) app to run command against
  -i, --index=index    the 1-based index of the URL to remove from the list of URLs
  -r, --remote=remote  git remote of app to use

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:search [TERM]

search for buildpacks

USAGE
  $ heroku buildpacks:search [TERM]

ARGUMENTS
  TERM  search term that searches across name, namespace, and description

OPTIONS
  --description=description  buildpack description to filter on
  --name=name                buildpack names to filter on using a comma separated list
  --namespace=namespace      buildpack namespaces to filter on using a comma separated list

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:set BUILDPACK

USAGE
  $ heroku buildpacks:set BUILDPACK

ARGUMENTS
  BUILDPACK  namespace/name of the buildpack

OPTIONS
  -a, --app=app        (required) app to run command against
  -i, --index=index    the 1-based index of the URL in the list of URLs
  -r, --remote=remote  git remote of app to use

See code: @heroku-cli/plugin-buildpacks

heroku buildpacks:versions BUILDPACK

list versions of a buildpack

USAGE
  $ heroku buildpacks:versions BUILDPACK

ARGUMENTS
  BUILDPACK  namespace/name of the buildpack

See code: @heroku-cli/plugin-buildpacks