Reputation: 41
Application Error in Heroku , with status H10 , desc = "app crashed" , No error in logs , Application running Locally but after deploying and building successfully , App is Crashing.
Methods I had tried to run it :-
Github repo = https://github.com/Emir28107/imgLoader.git
Application domain = https://imcha.herokuapp.com/
heroku logs --tail
file content
As , Build is successful , What might causing app to crash ? Help me please
Upvotes: 3
Views: 1339
Reputation: 279
we had an issue that might not be similar to yours but we were not getting any useful info from the logs with regards to the reason for the app crash.
However if you run heroku run rails console
it gave a more specific error, which helped us resolve the issue.
Upvotes: 2
Reputation: 108
You have not defined port specifically, Heroku is trying to start the project on the different port.
var port = process.env['PORT'] || 3000;
Upvotes: 0