aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2014-04-09 08:05:51 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2014-04-09 08:05:51 +0200
commit7a3a267e0fe50714cbfae702c3834fc227e1dc1f (patch)
tree360200055fc03beac2d88d0a97dfa00c0e04b1ff /install.sh
parentRemoved initialization script. (diff)
downloadnewspipe-7a3a267e0fe50714cbfae702c3834fc227e1dc1f.tar.gz
newspipe-7a3a267e0fe50714cbfae702c3834fc227e1dc1f.tar.bz2
newspipe-7a3a267e0fe50714cbfae702c3834fc227e1dc1f.zip
Detection if running on Heroku.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 4789066f..23e30b09 100755
--- a/install.sh
+++ b/install.sh
@@ -2,6 +2,9 @@
# 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
bgstack15