rbuchmeier / nordicNumbers

0 stars 0 forks source link

Keep API running #11

Closed rbuchmeier closed 7 years ago

rbuchmeier commented 7 years ago

We should keep our server running...as long as we don't need to make changes to app.js we shouldn't need to stop the server for any reason other than updates.

rbuchmeier commented 7 years ago

We can keep it running with the following line: node app.js > stdout.txt 2> stderr.txt & Then to find the process and kill it, use ps -ef to find it, then kill the PID.

I don't think we want to keep this under version control at this time? ...at least not until we have a more robust system that requires less knowledge of how the linux OS works.

Also I was not successful at getting Forever to work.