8 lines
277 B
Bash
8 lines
277 B
Bash
#/bin/bash
|
|
cnpm install -d #安装依赖库
|
|
npm run build
|
|
node generatePm2Config.js #使用pm2来做进程管理,生成进程配置文件
|
|
#rm -rf /game-server/shared
|
|
#cp -r /game-server/dist/shared /game-server
|
|
pm2-runtime pomeloPm2Start.json #pm2 启动游戏服务器
|