Last active
August 29, 2015 13:57
-
-
Save clay-whitley/9802895 to your computer and use it in GitHub Desktop.
Revisions
-
clay-whitley revised this gist
Mar 27, 2014 . 2 changed files with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,4 @@ start \ -al forever.log \ -ao out.log \ -ae err.log \ app.js This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ #!/bin/bash # Invoke the Forever module (to STOP our Node.js server). ./node_modules/forever/bin/forever stop app.js -
clay-whitley created this gist
Mar 27, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #!/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 \ server.js