Reputation: 53
Can you tell me how to remove heroku account and apps from computer as well as from their website completely. I want to start from scratch as heroku command-line client is giving me unknown errors, Just tell me the way to remove/uninstall heroku and all its stuff like foreman, git etc etc from my windows.
Upvotes: 4
Views: 12603
Reputation: 19
If you have installed using :
$ sudo snap install --classic heroku
uninstall using :
$ sudo snap remove heroku
Upvotes: 1
Reputation: 801
If you have installed using :
$ sudo snap install --classic heroku
uninstall using :
$ which heroku
/snap/bin/heroku
$ sudo rm snap/bin/heroku
$ heroku --version
heroku : command not found
Upvotes: 3
Reputation: 4525
Also remove all heroku gems, with something like gem uninstall heroku --all
Upvotes: 1
Reputation: 3697
To uninstall the tools that the heroku tool belt installed on your computer:
Make sure that the configuration files that the tool belt used have been removed by opening "~\", showing hidden files then deleting the folder called .heroku (if it still exists).
Apps can be removed from heroku by going to the site clicking on the app in your app list, going to advanced and pressing delete app.
Upvotes: 3