aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
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