1 Star 0 Fork 2

geoyclv/sharelist

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.sh 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
Ting 提交于 2019-10-17 18:51 . update shell
#!/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
echo "+============================================================+"
echo "| ShareList Installer |"
echo "| |"
echo "| <reruin@gmail.com> |"
echo "|------------------------------------------------------------|"
echo "| https://reruin.net |"
echo "+============================================================+"
echo ""
echo -e "\n| ShareList is installing ... "
# deps
if [ -n "$(command -v apt-get)" ]
then
apt-get install -y curl >/dev/null 2>&1
curl -sL https://deb.nodesource.com/setup_8.x | bash - >/dev/null 2>&1
apt-get install -y nodejs >/dev/null 2>&1
elif [ -n "$(command -v yum)" ]
then
yum install -y curl >/dev/null 2>&1
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - >/dev/null 2>&1
yum install -y nodejs >/dev/null 2>&1
fi
npm install
npm install pm2 -g
pm2 start app.js --name sharelist --env prod
pm2 save
pm2 startup
echo -e "|\n| Success: ShareList has been installed\n|"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/geoyclv/sharelist.git
git@gitee.com:geoyclv/sharelist.git
geoyclv
sharelist
sharelist
master

搜索帮助