Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove Heroku completely

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.

like image 889
user2240165 Avatar asked Feb 16 '23 22:02

user2240165


2 Answers

To uninstall the tools that the heroku tool belt installed on your computer:

  1. Open start menu
  2. Search for "uninstall"
  3. Click on Uninstall a Program
  4. Uninstall Git, Heroku, Ruby.

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.

like image 74
Eric Fode Avatar answered Feb 23 '23 04:02

Eric Fode


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
like image 20
Vishal Singh Avatar answered Feb 23 '23 03:02

Vishal Singh