122 lines
3.8 KiB
Bash
Executable File
122 lines
3.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Automated development deployment of django-orchestra
|
|
|
|
# This script is safe to run several times, for example in order to upgrade your deployment
|
|
|
|
set -u
|
|
set -e
|
|
|
|
bold=$(tput bold)
|
|
normal=$(tput sgr0)
|
|
|
|
|
|
[ $(whoami) != 'root' ] && {
|
|
echo -e "\nErr. This script should run as root\n" >&2
|
|
exit 1
|
|
}
|
|
|
|
USER='orchestra'
|
|
PASSWORD='orchestra'
|
|
HOME="/home/$USER"
|
|
PROJECT_NAME='panel'
|
|
BASE_DIR="$HOME/$PROJECT_NAME"
|
|
PYTHON_BIN="python3"
|
|
|
|
surun () {
|
|
echo " ${bold}\$ su $USER -c \"${@}\"${normal}"
|
|
su $USER -c "${@}"
|
|
}
|
|
|
|
run () {
|
|
echo " ${bold}\$ ${@}${normal}"
|
|
${@}
|
|
}
|
|
|
|
|
|
# Create a system user for running Orchestra
|
|
useradd $USER -s "/bin/bash" || true
|
|
echo "$USER:$PASSWORD" | chpasswd
|
|
mkdir -p $HOME
|
|
chown $USER.$USER $HOME
|
|
groups $USER | grep -E "(^|\s)$USER($|\s)" > /dev/null || run adduser $USER sudo
|
|
|
|
|
|
CURRENT_VERSION=$($PYTHON_BIN -c "from orchestra import get_version; print(get_version());" 2> /dev/null || false) || true
|
|
if [[ ! $CURRENT_VERSION ]]; then
|
|
# First Orchestra installation
|
|
run "apt-get -y install git python3-pip"
|
|
surun "git clone https://github.com/glic3rinu/django-orchestra.git ~/django-orchestra" || surun "export GIT_DIR=~/django-orchestra/.git; git pull"
|
|
PYTHON_PATH=$($PYTHON_BIN -c "import sys; print([path for path in sys.path if path.startswith('/usr/local/lib/python')][0]);")
|
|
echo $HOME/django-orchestra/ | sudo tee "$PYTHON_PATH/orchestra.pth"
|
|
run "cp $HOME/django-orchestra/orchestra/bin/orchestra-admin /usr/local/bin/"
|
|
fi
|
|
|
|
sudo orchestra-admin install_requirements --testing
|
|
|
|
if [[ ! -e $BASE_DIR ]]; then
|
|
cd $HOME
|
|
surun "orchestra-admin startproject $PROJECT_NAME"
|
|
cd -
|
|
fi
|
|
|
|
MANAGE="$BASE_DIR/manage.py"
|
|
|
|
if [[ ! $(sudo su postgres -c "psql -lqt" | awk {'print $1'} | grep '^orchestra$') ]]; then
|
|
# orchestra database does not esists
|
|
# Speeding up tests, don't do this in production!
|
|
. /usr/share/postgresql-common/init.d-functions
|
|
POSTGRES_VERSION=$(psql --version | head -n1 | sed -r "s/^.*\s([0-9]+\.[0-9]+).*/\1/")
|
|
sed -i "s/^#fsync =\s*.*/fsync = off/" \
|
|
/etc/postgresql/${POSTGRES_VERSION}/main/postgresql.conf
|
|
sed -i "s/^#full_page_writes =\s*.*/full_page_writes = off/" \
|
|
/etc/postgresql/${POSTGRES_VERSION}/main/postgresql.conf
|
|
|
|
run "service postgresql restart"
|
|
run "$PYTHON_BIN $MANAGE setuppostgres --db_name orchestra --db_user orchestra --db_password orchestra"
|
|
# Create database permissions are needed for running tests
|
|
sudo su postgres -c 'psql -c "ALTER USER orchestra CREATEDB;"'
|
|
fi
|
|
|
|
run "$PYTHON_BIN $MANAGE migrate --noinput auth"
|
|
run "$PYTHON_BIN $MANAGE migrate --noinput accounts"
|
|
run "$PYTHON_BIN $MANAGE migrate --noinput"
|
|
run "$PYTHON_BIN $MANAGE syncdb --noinput"
|
|
|
|
sudo $PYTHON_BIN $MANAGE setupcelery --username $USER --processes 2
|
|
|
|
# Install and configure Nginx web server
|
|
surun "mkdir -p $BASE_DIR/static"
|
|
surun "$PYTHON_BIN $MANAGE collectstatic --noinput"
|
|
run "apt-get install -y nginx uwsgi uwsgi-plugin-python3"
|
|
run "$PYTHON_BIN $MANAGE setupnginx"
|
|
run "service nginx start"
|
|
|
|
# Apply changes
|
|
run "$PYTHON_BIN $MANAGE restartservices"
|
|
|
|
# Create a orchestra user
|
|
cat <<- EOF | $PYTHON_BIN $MANAGE shell
|
|
from orchestra.contrib.accounts.models import Account
|
|
if not Account.objects.filter(username="$USER").exists():
|
|
print('Creating orchestra superuser')
|
|
Account.objects.create_superuser("$USER", "$USER@localhost", "$PASSWORD")
|
|
|
|
EOF
|
|
|
|
# Change to development settings
|
|
PRODUCTION="from orchestra.conf.production_settings import \*"
|
|
DEVEL="from orchestra.conf.devel_settings import \*"
|
|
sed -i "s/^$PRODUCTION/# $PRODUCTION/" $BASE_DIR/$PROJECT_NAME/settings.py
|
|
sed -i "s/^#\s*$DEVEL/$DEVEL/" $BASE_DIR/$PROJECT_NAME/settings.py
|
|
|
|
|
|
cat << EOF
|
|
|
|
${bold}
|
|
* Admin interface login *
|
|
- username: $USER
|
|
- password: $PASSWORD
|
|
${normal}
|
|
EOF
|