Deployment job timing out with successful deployment

Hi, I am trying to set up a private Node Service that should only be reachable within the render network. The service also successfully deploys (I can see the server starting up in the logs during deployment), but the deployment never recognizes the successful startup and therefore hangs until timing out.

FYI: It’s a typescript service.
Build command: npm i && npm run build
Run Command: npm start

Any ideas?

1 Like

I’m having the same problem with my django-react app and it’s been a few days (5-6 hrs) of trying different things with no efficacy so far.

Fixed it by doing the following two things:

  • Changed listening interface to 0.0.0.0
  • Added PORT environment variable matching the port of my server
1 Like