1 Star 0 Fork 0

hao/community1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
community 517 Bytes
一键复制 编辑 原始数据 按行查看 历史
 小匠 提交于 2019-07-17 07:36 . 更新部署脚本
cd ~/App/community/
git pull
mvn clean compile flyway:migrate -Pproduction
mvn clean compile -DskipTests package
pid=$(ps aux | grep "community" | grep -v grep | awk '{print $2}')
echo "kill -9 $pid"
kill -9 $pid
STATUS=$?
if [ $STATUS -eq 0 ]
then
echo "Kill previous process successfully."
echo "Begin restart community"
nohup java -jar -Dspring.profiles.active=production target/community-0.0.1-SNAPSHOT.jar >/dev/null 2>&1 &
echo "Community restart successfully."
else
echo "Kill previous process failed."
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/haochn/community1.git
git@gitee.com:haochn/community1.git
haochn
community1
community1
master

搜索帮助