Reputation: 76
Got an error when trying to deploy a django web app to heroku using the command
$ git push heroku master
Here is the error given after I type that command:
mysite lateefa$ git push heroku master
remote: ! No such app as vast-spire-40247.
fatal: repository 'https://git.heroku.com/vast-spire-40247.git/' not found
Any suggestions on how to fix this issue?
Upvotes: 0
Views: 2578
Reputation: 915
Add the remote url.
git remote add heroku [email protected]:vast-spire-40247.git
Upvotes: 1