Skip to content

Instantly share code, notes, and snippets.

@clay-whitley
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clay-whitley/9802895 to your computer and use it in GitHub Desktop.
Save clay-whitley/9802895 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Invoke the Forever module (to START our Node.js server).
./node_modules/forever/bin/forever \
start \
-al forever.log \
-ao out.log \
-ae err.log \
app.js
#!/bin/bash
# Invoke the Forever module (to STOP our Node.js server).
./node_modules/forever/bin/forever stop app.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment