当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 593

丛林迷雾 / Archery
暂停

forked from 小圈圈 / Archery 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
admin.sh 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
alenx.hai 提交于 2020-02-29 09:08 . 一体初始化脚本
#!/usr/bin/env bash
#########################################################################
# Update Time : 2020-02-25
# Author: alenx <alenx.hai@gmail.com>
#########################################################################
function init() {
echo "Initing archery"
echo "----------------"
echo "安装/更新可能缺少的依赖: mysql-community-devel gcc gcc-c++ python-devel"
sudo yum install -y epel-release
sudo yum install -y mysql-devel gcc gcc-c++ python-devel MySQL-python
sudo yum install -y python36 python3-devel python36-pip openldap-devel unixODBC-devel gettext
python3 -m pip install virtualenv -i https://mirrors.aliyun.com/pypi/simple/
if [ ! -d "venv" ]; then
virtualenv --system-site-packages -p python3 venv
fi
source ./venv/bin/activate
./venv/bin/python3 -m pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
echo "************************************************"
echo -e "\033[32m init archery success \033[0m"
echo -e "\033[32m welcome to archery 2.0 \033[0m"
}
function start() {
echo "Starting archery"
echo "----------------"
source ./venv/bin/activate
python3 manage.py collectstatic -v0 --noinput
supervisord -c supervisord.conf
echo -e "Start archery: [\033[32m ok \033[0m]"
}
function stop() {
echo "Stoping archery"
echo "----------------"
source ./venv/bin/activate
supervisorctl -c supervisord.conf stop all
kill -9 $(ps -ef | grep "Archery" | grep -v grep | awk '{print $2}')
echo -e "Stop archery: [\033[32m ok \033[0m]"
}
function restart() {
stop
echo ""
start
}
function adduser() {
echo "Add Admin Users "
source ./venv/bin/activate
python3 manage.py createsuperuser
echo -e "Add Users: [\033[32m ok \033[0m]"
}
function migration() {
echo "Migration archery"
echo "----------------"
source ./venv/bin/activate
python3 manage.py makemigrations sql
python3 manage.py migrate
python3 manage.py dbshell<sql/fixtures/auth_group.sql
if [ $? == "0" ]; then
echo -e "Migration: [\033[32m ok \033[0m]"
else
echo -e "Migration: [\033[31m fail \033[0m]"
fi
}
case "$1" in
init )
init
;;
start )
start
;;
stop )
stop
;;
restart )
restart
;;
adduser )
adduser
;;
migration )
migration
;;
* )
echo "************************************************"
echo "Usage: sh admin {init|start|stop|restart|adduser|migration}"
echo "************************************************"
;;
esac
Python
1
https://gitee.com/chh/Archery.git
git@gitee.com:chh/Archery.git
chh
Archery
Archery
master

搜索帮助