Files
ZYZ/game-server/pm2Starter.sh
T

11 lines
359 B
Bash
Executable File

#/bin/bash
npm install #安装依赖库
npm run build
node pm2Config.js #使用pm2来做进程管理,生成进程配置文件
pm2 start pomeloPm2Start.json #pm2 启动游戏服务器
json=$(cat config.json)
env=$(echo "$json" | grep -o '"env": *"[^"]*"' | sed 's/"env": *"\(.*\)"$/\1/')
echo $env
xtransit stop all
xtransit start xtransitConfig/$env.js