Files
ZYZ/game-server/pm2Starter.sh
2023-04-12 14:16:37 +08:00

11 lines
359 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#/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