Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

keep angular cli development application running in the background on the server ?

I am running a angular cli development on a remote server, would it possible to run this development application in daemon mode? like what we use in forever.js

like image 891
user824624 Avatar asked Dec 19 '22 09:12

user824624


1 Answers

I'm running it like this on Linux. I'm unfamiliar with forever.js, but this may help.

nohup ng serve 2>&1 >> /var/log/ng.log &
like image 68
leonardseymore Avatar answered Dec 28 '22 11:12

leonardseymore