icp/dev/run-internal.sh

28 lines
712 B
Bash
Raw Normal View History

2018-05-05 20:56:32 +00:00
#!/bin/bash -e
2018-05-05 20:41:55 +00:00
adduser --system --no-create-home --home /data --uid 1000 www-user
sed -i "s/APACHE_RUN_USER=www-data/APACHE_RUN_USER=www-user/" /etc/apache2/envvars
2018-05-05 22:18:02 +00:00
sed -i "s#data_directory = '.*'#data_directory = '/data/run/postgres'#" /etc/postgresql/10/main/postgresql.conf
/etc/init.d/postgresql restart
2018-05-05 20:41:55 +00:00
/etc/init.d/apache2 start
tail -f /var/log/apache2/error.log &
2018-05-05 20:56:32 +00:00
2018-05-05 22:18:02 +00:00
export OER_SRC_DIR=/data/oer
export PLATFORM_PATH=/data/src
2018-05-05 20:56:32 +00:00
V="/data/run/virtualenv"
if [[ ! -e $V ]] ; then
mkdir -p $V
virtualenv -p python3 $V
cd $V
source $V/bin/activate
pip3 install -U -r /data/dev/requirements.txt
2018-05-05 22:18:02 +00:00
python3 ./manage.py migrate
python3 ./manage.py collectstatic
2018-05-05 20:56:32 +00:00
fi
2018-05-05 22:18:02 +00:00
source $V/bin/activate
2018-05-05 20:56:32 +00:00
2018-05-05 20:41:55 +00:00
/bin/bash