When I try to push my app to Heroku I get this response:
fatal: \'heroku\' does not appear to be a git repository fatal: Could not read from remote repositor
You forgot to link your app name to your heroku. It's a very common mistake. if your app is not created, then use:
heroku create (optional app name)
else:
git add . git commit -m "heroku commit" heroku git:remote -a YOUR_APP_NAME git push heroku master