Reputation: 1298
I have never used Heroku before, but I am now trying to add a repo from GitHub so that I can see my project on Heroku. I have followed the instructions here https://devcenter.heroku.com/articles/getting-started-with-nodejs#deploy-the-app but I get an error message when I try to push it to Heroku.
This is the error message I get. When I do clone I use the link to the repo that you get from GitHub. Could anyone think of what I'm doing wrong?
Upvotes: 0
Views: 111
Reputation: 2745
You have the error message in the output. Heroku wasn't able to recognize language for your application. It means that it can't choose the method for deployment automatically.
You can set buildpack manually as described in documentation. Make sure that application works fine on localhost before pushing to Heroku. Something may be missing and this might be the reason for the error.
Upvotes: 1