Reputation: 7866
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?
Upvotes: 2
Views: 12872
Reputation: 1121
You can login into heroku Click on your app Click "Settings" Scroll down to the bottom of the page and click "Delete App"
Hope it help!
Upvotes: 0
Reputation: 2886
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/ | git@heroku.com:newname.git
Git remote heroku updated
Find more details on the provided link.
Hope it helps!
Upvotes: 9