Skip to content

Commit

Permalink
Merge pull request #646 from Alenx58/master
Browse files Browse the repository at this point in the history
一体初始化脚本
  • Loading branch information
hhyo authored Feb 29, 2020
2 parents b8bc33f + 3af17ef commit 5e199a7
Showing 1 changed file with 96 additions and 0 deletions.
96 changes: 96 additions & 0 deletions admin.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
#!/usr/bin/env bash

#########################################################################
# Update Time : 2020-02-25
# Author: alenx <[email protected]>
#########################################################################

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

0 comments on commit 5e199a7

Please sign in to comment.