TS Express App Starts But Deploy Doesn't Finish

Deploying an Express app in TypeScript that has a successful build and start:

  "scripts": {
    "build": "tsc",
    "dev": "ts-node ./src/index.ts",
    "start": "node ./dist/src/index.js"
  },

Everything builds and starts in the logs without error but the deploy never wraps up. yarn; yarn build is my build command with yarn start to follow.

SOLVED: Adding the health check finished the deploy process

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.