diff options
Diffstat (limited to 'install')
-rwxr-xr-x | install/install.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/install/install.sh b/install/install.sh index 6aa4ae31b..92d0684c6 100755 --- a/install/install.sh +++ b/install/install.sh @@ -77,7 +77,6 @@ apt-get -q -y install python python-django \ apt-get -q -y install uwsgi uwsgi-plugin-python nginx memcached 2> /dev/null > /dev/null -pip install$PIP_OPTIONS git+https://github.com/treyhunner/django-simple-history.git@0fd9b8e9c6f36b0141367b502420efe92d4e21ce 2> /dev/null > /dev/null pip install$PIP_OPTIONS BeautifulSoup4==4.3.2 if [ -z "$DB_PASSWORD" ] @@ -126,14 +125,18 @@ cd $INSTALL_PATH echo ' * ishtar' git clone https://gitlab.com/ishtar/ishtar.git 2> /dev/null -echo ' * oook!' -git clone git://git.proxience.com/git/oook_replace.git 2> /dev/null -ln -s $INSTALL_PATH'/oook_replace/oook_replace' $INSTALL_PATH'/ishtar/' +# echo ' * oook!' +# git clone git://git.proxience.com/git/oook_replace.git 2> /dev/null +# ln -s $INSTALL_PATH'/oook_replace/oook_replace' $INSTALL_PATH'/ishtar/' cd ishtar git fetch 2> /dev/null git checkout $VERSION 2> /dev/null +cd django-simple-history +python setup.py install +cd .. + cp -ra example_project $APP_NAME 2> /dev/null > /dev/null rm $APP_NAME/settings.py |