Reputation: 1
I'm trying to deploy a MEAN stack app on Google Cloud platform using their functionality "click-to-deploy". Once my VM is created, I can ssh to it, clone my git repository and run my server. My app is accessible at the given IP address on the right port. Everything works fine until I end my session which automatically stops my server. How can I make sure node will still be running afterwards ?
Upvotes: 0
Views: 67
Reputation: 1
A better way to do it would have been to use the command forever start
Upvotes: 0