Last active
August 29, 2015 14:15
-
-
Save pierr/4500cab0fd4137154ab0 to your computer and use it in GitHub Desktop.
node-production
This file contains 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 characters
echo 'define env variables' | |
APP_DIRECTORY=/path/directeory | |
PM2_BIN=node_modules/pm2/bin/pm2 | |
PM2=$APP_DIRECTORY/PM2_BIN |
This file contains 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 characters
./node-env.sh | |
APPNAME="APPLICATION NAME" | |
echo 'Launch the application' | |
$PM2 start $APP_DIRECTORY |
This file contains 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 characters
./node-env.sh | |
echo 'Stop the application the application' | |
$PM2 stop $APP_DIRECTORY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment