This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
compte-agglo-montpellier/start.sh

28 lines
808 B
Bash
Raw Normal View History

PROJECT=compte-agglo-montpellier
CTL=${PROJECT}
2013-06-26 10:27:48 +02:00
VENV=${PROJECT}-venv
if [ "$VIRTUAL_ENV" = "" ]; then
if which mkvirtualenv >/dev/null 2>&1; then
workon $PROJECT || (mkvirtualenv $PROJECT; workon $PROJECT)
else
2013-06-26 10:27:48 +02:00
if [ ! -d $VENV ]; then
virtualenv --system-site-packages $VENV 2>/dev/null || virtualenv $VENV
fi
2013-06-26 10:27:48 +02:00
. ./$VENV/bin/activate
fi
fi
2014-01-21 09:59:38 +01:00
pip install --upgrade setuptools
pip install --upgrade pip
pip install --upgrade pyOpenSSL==0.13 ndg-httpsclient requests pyasn1
sed -i 's/^MAX = 64/MAX = 200/' $VENV/lib/python*/site-packages/ndg/httpsclient/subj_alt_name.py
2014-01-21 09:59:38 +01:00
pip install --upgrade --process-dependency-links -r requirements.txt
if [ ! -f $PROJECT.db ]; then
./$CTL syncdb --all --noinput
./$CTL migrate --fake
./load-base-data.sh
fi
if [ "$1" != "norun" ]; then
./$CTL runserver
fi