django-orchestra/scripts/containers/deploy.sh

100 lines
3.3 KiB
Bash
Raw Normal View History

2014-05-08 16:59:35 +00:00
#!/bin/bash
2015-04-29 21:35:56 +00:00
set -ue
2015-09-30 20:33:25 +00:00
2015-10-01 18:02:23 +00:00
# bash <( curl https://raw.githubusercontent.com/glic3rinu/django-orchestra/master/scripts/containers/deploy.sh )
function main () {
bold=$(tput -T ${TERM:-xterm} bold)
normal=$(tput -T ${TERM:-xterm} sgr0)
[ $(whoami) == 'root' ] && {
echo -e "\nErr. This script should run as a regular user\n" >&2
exit 1
2015-04-29 21:35:56 +00:00
}
2014-05-08 16:59:35 +00:00
run () {
echo " ${bold}\$ ${@}${normal}"
${@}
}
2015-10-02 11:36:24 +00:00
# Test sudo privileges
sudo true
while true; do
2015-09-30 20:33:25 +00:00
read -p "Enter a project name [panel]: " project_name
if [[ "$project_name" == "" ]]; then
project_name="panel"
break
elif [[ ! $(echo "$project_name" | grep '^[_a-zA-Z]\w*$') ]]; then
if [[ ! $(echo "$project_name" | grep '^[_a-zA-Z]') ]]; then
message='make sure the name begins with a letter or underscore'
else
message='use only numbers, letters and underscores'
fi
echo "'$project_name' is not a valid %s name. Please $message."
else
break
fi
done
2015-09-30 20:33:25 +00:00
2015-10-01 18:57:31 +00:00
# TODO detect if already installed and don't ask stupid question
2015-09-30 20:33:25 +00:00
while true; do
read -p "Do you want to use celery or cronbeat (orchestra.contrib.tasks) for task execution [cronbeat]? " task
2015-09-30 20:33:25 +00:00
case $task in
'celery' ) task=celery; break;;
2015-10-02 11:20:52 +00:00
'cronbeat' ) task=orchestra.contrib.tasks; break;;
'' ) task=orchestra.contrib.tasks; break;;
2015-09-30 20:33:25 +00:00
* ) echo "Please answer celery or cronbeat.";;
esac
done
run sudo pip3 install django-orchestra==dev \
--allow-external django-orchestra \
--allow-unverified django-orchestra
run sudo orchestra-admin install_requirements
run cd $(eval echo ~$USER)
run orchestra-admin startproject $project_name
run cd $project_name
sudo service postgresql start
2015-10-02 09:34:02 +00:00
run sudo python3 -W ignore manage.py setuppostgres
2015-10-01 18:57:31 +00:00
run python3 -W ignore manage.py migrate
2015-10-02 11:20:52 +00:00
if [[ "$task" == "celery" ]]; then
run sudo apt-get install rabbitmq-server
run sudo python3 -W ignore manage.py setupcelery --username $USER
else
2015-10-01 18:57:31 +00:00
run python3 -W ignore manage.py setupcronbeat
run python3 -W ignore manage.py syncperiodictasks
2015-09-30 20:33:25 +00:00
fi
2015-10-01 18:57:31 +00:00
run sudo python3 -W ignore manage.py setuplog --noinput
2015-10-01 18:57:31 +00:00
run python3 -W ignore manage.py collectstatic --noinput
run sudo apt-get install nginx-full uwsgi uwsgi-plugin-python3
2015-10-01 18:57:31 +00:00
run sudo python3 -W ignore manage.py setupnginx --user $USER
2015-10-01 20:14:32 +00:00
run sudo python3 -W ignore manage.py restartservices
2015-10-02 11:36:24 +00:00
run sudo python3 -W ignore manage.py startservices
2015-10-02 11:48:30 +00:00
run python3 -W ignore manage.py check --deploy
2015-10-02 11:36:24 +00:00
ip_addr=$(ip addr show eth0 | grep 'inet ' | sed -r "s/.*inet ([^\s]*).*/\1/" | cut -d'/' -f1)
if [[ $ip_addr == '' ]]; then
ip_addr=127.0.0.1
fi
2015-10-02 11:48:30 +00:00
echo
echo -e "${bold}Checking if Orchestra is working at https://${ip_addr}/admin/${normal} ...\n"
if [[ $(curl https://$ip_addr/admin/ -I -k -s | grep 'HTTP/1.1 302 FOUND') ]]; then
echo -e "${bold}Orchestra appears to be working!\n"
2015-10-02 11:36:24 +00:00
else
2015-10-02 11:48:30 +00:00
echo -e "${bold}Err. Orchestra is not responding responding at https://${ip_addr}/admin/${normal}\n" >&2
2015-10-02 11:36:24 +00:00
fi
}
# Wrap it all on a function to avoid partial executions when running through wget/curl
main