How do I run StrongLoop's Loopback with Forever so that the app is automatically restarted after ever change?
So far just running forever server/server.js
doesn't seem to work...
How do I run StrongLoop's Loopback with Forever so that the app is automatically restarted after ever change?
So far just running forever server/server.js
doesn't seem to work...
Thanks. I have found that the best script is this:
Each part means:
--verbose
: Log all details (useful when developing new routes)--uid \"myapp\"
: So that "myapp" will appear when you do aforever list
--watch
: Watch for file changes--watchDirectory ./server
: The folder to watch for changesserver/server.js
: The app entry pointAdditionally I open it with like
nohup npm start &
so that the process will keep running in the background and the output will be appended to a nohup.out file.