2014-09-02 17:29:04 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-09-02 22:07:14 +03:00
|
|
|
# Provision script created for Ubuntu 14.04
|
2014-09-09 00:05:23 +03:00
|
|
|
|
2014-09-04 06:25:48 +03:00
|
|
|
APP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2014-09-08 20:49:37 +03:00
|
|
|
APP_USER="$( stat -c '%U' ${APP_DIR} )"
|
2014-09-02 17:29:04 +03:00
|
|
|
|
2014-09-09 00:05:23 +03:00
|
|
|
if [ -d "/vagrant" ]; then
|
|
|
|
# Control will enter here if $DIRECTORY exists.
|
|
|
|
APP_DIR="/vagrant"
|
|
|
|
APP_USER="vagrant"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ${APP_DIR}
|
|
|
|
echo ${APP_USER}
|
|
|
|
|
2014-09-02 17:29:04 +03:00
|
|
|
echo "Provisioning..."
|
|
|
|
|
2014-09-09 00:05:23 +03:00
|
|
|
sudo add-apt-repository -y ppa:chris-lea/node.js
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y python build-essential git libpcre3-dev python-software-properties \
|
2014-09-02 17:29:04 +03:00
|
|
|
python-pip python-virtualenv python-dev pkg-config curl libxml2-dev libxslt1-dev zlib1g-dev \
|
2014-09-16 00:45:47 +03:00
|
|
|
libffi-dev nodejs libyaml-dev
|
2014-09-02 17:29:04 +03:00
|
|
|
|
|
|
|
# Default cache is memoization
|
|
|
|
|
|
|
|
# Redis
|
|
|
|
# add-apt-repository -y chris-lea/redis-server
|
|
|
|
# add-apt-repository -y chris-lea/python-redis
|
|
|
|
# apt-get update
|
|
|
|
# apt-get install -y redis-server
|
|
|
|
|
|
|
|
# Default DB is sqlite
|
|
|
|
|
|
|
|
# Mysql
|
|
|
|
# apt-get install -y mysql-server mysql-client
|
|
|
|
|
|
|
|
# MariaDB
|
|
|
|
# apt-get install -y mariadb-server mariadb-client
|
|
|
|
|
|
|
|
# Postgres
|
|
|
|
# apt-get install -y postgresql postgresql-contrib
|
|
|
|
|
|
|
|
# Install frontend assets
|
2014-09-09 00:05:23 +03:00
|
|
|
sudo npm install -g bower
|
2014-09-09 23:19:53 +03:00
|
|
|
sudo -iu ${APP_USER} bower --config.cwd=${APP_DIR} --config.directory=realms/static/vendor --config.interactive=false install
|
2014-09-02 17:29:04 +03:00
|
|
|
|
2014-09-09 00:05:23 +03:00
|
|
|
sudo -iu ${APP_USER} virtualenv ${APP_DIR}/.venv
|
2014-09-02 17:29:04 +03:00
|
|
|
|
2014-09-09 00:05:23 +03:00
|
|
|
sudo -iu ${APP_USER} ${APP_DIR}/.venv/bin/pip install -r ${APP_DIR}/requirements.txt
|
2014-09-02 17:29:04 +03:00
|
|
|
|
2014-09-08 20:49:37 +03:00
|
|
|
echo "Installing start scripts"
|
2014-09-02 22:07:14 +03:00
|
|
|
cat << EOF > /usr/local/bin/realms-wiki
|
|
|
|
#!/bin/bash
|
|
|
|
${APP_DIR}/.venv/bin/python ${APP_DIR}/manage.py "\$@"
|
|
|
|
EOF
|
2014-09-09 00:05:23 +03:00
|
|
|
sudo chmod +x /usr/local/bin/realms-wiki
|
2014-09-02 22:07:14 +03:00
|
|
|
|
|
|
|
cat << EOF > /etc/init/realms-wiki.conf
|
|
|
|
description "Realms Wiki"
|
|
|
|
author "scragg@gmail.com"
|
|
|
|
start on runlevel [2345]
|
|
|
|
stop on runlevel [!2345]
|
|
|
|
respawn
|
|
|
|
exec /usr/local/bin/realms-wiki run
|
|
|
|
EOF
|