Question

I'm deploying the starter project https://github.com/DaftMonk/generator-angular-fullstack (the most popular yeoman generator). I've build and served the project on a remote ubuntu 14.01 server using the command:

 grunt serve:dist

Everything works great... until I terminate the ssh session. Has anyone successfully run this generator project as a daemon? Thanks!

Was it helpful?

Solution

You can use nohup.

nohup  grunt serve:dist &

Check nohup man page

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top