Heroku: “No default language could be detected for this app” error thrown for node app

Heroku has a set of default buildpacks, used when it needs to detect the language of your app.In order to do that detection, it runs the bin/detect command of each of those default buildpacks, until one of them returns a 0 exit code. This is the command for the node buildpack.As you can see, it requires a package.json to … Read more

Heroku: “No default language could be detected for this app” error thrown for node app

Heroku has a set of default buildpacks, used when it needs to detect the language of your app.In order to do that detection, it runs the bin/detect command of each of those default buildpacks, until one of them returns a 0 exit code. This is the command for the node buildpack.As you can see, it requires a package.json to … Read more