增加openresty

master
pan 4 years ago
parent 726989bb29
commit 351d2c916e
  1. 8
      shell/initRisk
  2. 13
      shell/updateRisk

@ -1,14 +1,10 @@
#!/bin/sh #!/bin/sh
#运行自动部署服务端
node /app/RiskCloudRun/bin/www &
#运行web服务端 #运行web服务端
updateRisk RiskCloudMock updateRisk RiskCloudMock
#运行web客户端 #运行web客户端
updateRisk RiskCloudFontend updateRisk RiskCloudFontend
#运行openresty #运行openresty
/usr/local/openresty/nginx/sbin/nginx /usr/local/openresty/nginx/sbin/nginx
#运行自动部署服务端
jobs /app/RiskCloudRun/bin/www
#把自动部署服务端切换到前台进行,使容器不会停止运行
fg %1

@ -22,11 +22,18 @@ function run(){
if [ ! -e $1 ] if [ ! -e $1 ]
then then
git clone git@gogs.kirito.cool:panqihua/$1.git git clone git@gogs.kirito.cool:panqihua/$1.git
isUpdate=0
else
isUpdate=1
fi fi
cd $1 && git reset --hard && git pull && yarn && chmod +x run.sh && killNode cd $1 && git reset --hard && git pull && yarn && chmod +x run.sh && killNode
url="http://127.0.0.1:3000/finsh?name=$1"
echo "成功回调地址:$url" if [ $isUpdate -eq 1 ]
curl $url then
url="http://127.0.0.1:3000/finsh?name=$1"
echo "成功回调地址:$url"
curl $url
fi
} }
run $1 run $1

Loading…
Cancel
Save