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?
Asked
Active
Viewed 5,247 times
1 Answers
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
-
I have done like this, and its started but when i run project on my browser its not working... – Alessia Williams Jul 20 '20 at 10:03
-
i dont know why it's not working but first please check if your app is running correctly – critrange Jul 20 '20 at 14:02