mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
18 lines
No EOL
314 B
Bash
Executable file
18 lines
No EOL
314 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Get dir of this script
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
pm2 deploy $DIR/config/ecosystem-dev.json5 dev
|
|
exit
|
|
fi
|
|
|
|
if [ "$1" == "production" ]
|
|
then
|
|
pm2 deploy $DIR/config/ecosystem.json5 production
|
|
exit
|
|
fi
|
|
|
|
echo "Case ($1) not defined. doing nothing." |