django-orchestra-test/scripts/containers/deploy.sh

84 lines
2.5 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
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}"
${@}
}
2014-05-08 16:59:35 +00:00
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
# TODO Password: Password (again):
read -p "Enter a new database password: " db_password
2015-09-30 20:33:25 +00:00
while true; do
read -p "Do you want to use celery or cronbeat for task execution [cronbeat]?" task
case $task in
'celery' ) task=celery; break;;
'cronbeat' ) task=cronbeat; break;;
'' ) task=cronbeat; break;;
* ) 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
run sudo python3 manage.py setuppostgres --db_password "$db_password"
run python3 manage.py migrate
2015-09-30 20:33:25 +00:00
if [[ "$task" == "cronbeat" ]]; then
run python3 manage.py setupcronbeat
2015-09-30 20:33:25 +00:00
run python3 manage.py syncperiodictasks
else
run sudo apt-get install rabbitmq
run sudo python3 manage.py setupcelery --username $USER
2015-09-30 20:33:25 +00:00
fi
2015-09-30 20:33:25 +00:00
run sudo python3 manage.py setuplog --noinput
run python3 manage.py collectstatic --noinput
run sudo apt-get install nginx-full uwsgi uwsgi-plugin-python3
run sudo python3 manage.py setupnginx --user $USER
run sudo python manage.py startservices
2015-09-30 20:33:25 +00:00
run python3 manage.py check --deploy
}
# Wrap it all on a function to avoid partial executions when running through wget/curl
main