I am using Heroku toolbelt:
>heroku create app1
(root application)>heroku create app2
(from the same root application)I wanted to add variable: heroku config:set MYVAR=value
Then I get the error:
Setting MYVAR and restarting app1... !
! Couldn't find that app.
How can I switch to the new app (app2) and remove app1 completely?
Try destroying the old app:
heroku apps:destroy app1
Note that this will permanently and irrevocably destroy app1
.