Shahbaz Shabbir
Shahbaz Shabbir

Reputation: 49

How can I delete Heroku Buildpacks?

I am new to Heroku and I'm having trouble during deployment.

I want to deploy a Python app.

I just want to delete my Buildpacks as I don't know BUILDPACK_URL or how to get it and I've reached Buildpacks limit.

Upvotes: 0

Views: 1033

Answers (2)

momaji
momaji

Reputation: 211

If you have the Heroku CLI installed you can simply do this with the command

heroku buildpacks:clear

or if you have multiple apps

heroku buildpacks:clear --app <app-name>

Upvotes: 1

aiven
aiven

Reputation: 4323

you can manage buildpacks for app in https://dashboard.heroku.com/apps/<app_name>/settings

enter image description here

Upvotes: 1

Related Questions