Files
ZYZ/game-server/pm2StarterDistribute.sh
2021-07-31 18:19:55 +08:00

15 lines
541 B
Bash
Executable File
Raw 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
if [ $# != 2 ] ; then
echo "需要2个参数"
echo "例如 ./pm2StarterDistribute.sh dev distribute"
echo "参数1 主机环境 master.json中的类型 例如:dev"
echo "参数2 新物理机启动的servers servers.ts中的类型 例如:distribute"
echo "关于参数配置详见README描述"
exit 1;
fi
npm install #安装依赖库
npm run build
node pm2DistributeConfig.js ${1} ${2} #使用pm2来做进程管理生成进程配置文件
pm2 start pomeloPm2Start.json #pm2 启动游戏服务器