aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 14:28:03 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 14:28:03 +0200
commitad9e0b547b6a0acf6ee313c4f52b51f37cb6e7ae (patch)
tree33921e535b34abb28077d2af5a3669fd9d74b742 /install.sh
parentRemoved benchmark scripts. (diff)
downloadnewspipe-ad9e0b547b6a0acf6ee313c4f52b51f37cb6e7ae.tar.gz
newspipe-ad9e0b547b6a0acf6ee313c4f52b51f37cb6e7ae.tar.bz2
newspipe-ad9e0b547b6a0acf6ee313c4f52b51f37cb6e7ae.zip
Removed install.sh file.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/install.sh b/install.sh
deleted file mode 100755
index 23e30b09..00000000
--- a/install.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-# Installation of PostgreSQL
-sudo apt-get install postgresql postgresql-server-dev-9.1 postgresql-client
-#sudo -u postgres createuser
-#createdb pyAggr3g470r
-#sudo -u postgres psql
-
-# Python dependencies
-sudo apt-get install -y python-pip
-pip install --user virtualenv
-virtualenv --no-site-packages ./env_pyAggr3g470r
-source ./env_pyAggr3g470r/bin/activate
-pip install --upgrade -r requirements.txt
-
-# Configuration
-cp conf/conf.cfg-sample conf/conf.cfg
-python db_create.py
-
-# Launch pyAggr3g470r
-python runserver.py
-
-deactivate
bgstack15