Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove heroku repository from rails app

I have deleted a Heroku application from the website.

Then when I try to create a new repository using heroku create it tells me that my old application does not exist.

How can I create a new application after deleting the old one?

like image 692
chell Avatar asked Jan 20 '26 19:01

chell


1 Answers

I think that page provides the answer.

Its content: Renaming Apps from the CLI

You can rename an app at any time with the heroku rename command. For example, to rename an app named “oldname” to “newname”, change into the app’s git checkout and run:

$ heroku rename newname
http://newname.heroku.com/ | [email protected]:newname.git
Git remote heroku updated

Find more details on the provided link.

Hope it helps!

like image 161
Lucas Avatar answered Jan 24 '26 11:01

Lucas