Heyhey!
I’m switching our hosting provider from Heroku to Render, but I’ve been having some difficulties getting started.
I started out running a web service on the free tier which worked fine, but when trying to change the plan from a Free one to f.x. Standard, the build just times out.
I found a few posts already where the solution was to bind to 0.0.0.0, but that does not seem to do the trick for me. I’m using express, and have tried starting the application with both app.listen(port, callback)
and app.listen(port, '0.0.0.0', callback)
.
I can see in the server log that the server is started successfully so the issue seems to be with communication from render to the server (a health check path is defined).
Excited to resolve this and finish our move to Render!