๐ค Situation
$ heroku apps:info
โธ No app specified.
โธ USAGE: heroku info my-app
๐ Solution
1. Check your git remote
$ git remote -v
origin git@github.com:n350071/my-app.git (fetch)
origin git@github.com:n350071/my-app.git (push)
2. set the git remote to heroku
Then, Heroku will automatically detect your app when you're in the git managed directory.
$ heroku git:remote --app my-app-prototype
set git remote heroku to https://git.heroku.com/my-app-prototype.git
$ git remote -v
heroku https://git.heroku.com/my-app-prototype.git (fetch)
heroku https://git.heroku.com/my-app-prototype.git (push)
origin git@github.com:n350071/my-app.git (fetch)
origin git@github.com:n350071/my-app.git (push)
๐ฆ Solved
$ heroku apps:info
=== my-app-prototype
Addons: cleardb:ignite
sendgrid:starter
Dynos: web: 1
Git URL: https://git.heroku.com/my-app-prototype.git
Region: us
Repo Size: 0 B
Slug Size: 71 MB
Stack: heroku-18
Top comments (0)