1 Star 0 Fork 3

cheng53955/MineCase

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_and_run.sh 526 Bytes
一键复制 编辑 原始数据 按行查看 历史
GefaketHD 提交于 2020-04-20 19:37 . whatever
#!/bin/bash
which mongo
if [ $? -ne 0 ]; then
echo "mongo command is not available, please make sure mongodb is installed and added to the system path."
return 1
fi
mongo --eval "db.stats()"
if [ $? -ne 0 ]; then
echo "mongodb not running"
return 1
else
echo "mongodb is online..."
fi
echo building MineCase...
cd src
dotnet restore
dotnet build -c debug
cd -
echo start MineCase.Server...
cd src/MineCase.Server
dotnet run &
cd -
echo start MineCase.Gateway...
cd src/MineCase.Gateway
dotnet run
cd -
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/cheng53955/MineCase.git
git@gitee.com:cheng53955/MineCase.git
cheng53955
MineCase
MineCase
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385