chell
chell

Reputation: 7866

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?

Upvotes: 2

Views: 12872

Answers (2)

Patrick
Patrick

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

Lucas
Lucas

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

Related Questions