5

I have developed my project in the Nest JS framework. My main file in the src folder (src/main.ts). How can I start the server on my Digital Ocean server?

1 Answers1

9

After you build the project, then it will have main.js file under /dist. So just run:

pm2 start PATH_TO_YOUR_PROJECT/dist/main.js --name=YOUR_APP_NAME
critrange
  • 5,652
  • 2
  • 16
  • 47