mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
10 lines
No EOL
186 B
Bash
Executable file
10 lines
No EOL
186 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
pm2 deploy $DIR/config/ecosystem.json5 dev
|
|
else
|
|
pm2 deploy $DIR/config/ecosystem.json5 $1
|
|
fi |