How to lift sails in production with pm2 ?? I mean what is the the command of pm2 to get similar action like below command.
sails lift --prod
like we can run sails lift
as pm2 start app.js
In pm2 we can specify command line arguments after --
I tried pm2 start app.js -- --prod
to lift sails in production but not working,
How we can achieve this?