diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2014-04-09 07:57:03 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2014-04-09 07:57:03 +0200 |
commit | 3a72b59bf02ee74e9e9713705e819c5decbe3c88 (patch) | |
tree | 75c00c983f51a444c57769d87240830a30bcf71e /install.sh | |
parent | Fixed README. (diff) | |
download | newspipe-3a72b59bf02ee74e9e9713705e819c5decbe3c88.tar.gz newspipe-3a72b59bf02ee74e9e9713705e819c5decbe3c88.tar.bz2 newspipe-3a72b59bf02ee74e9e9713705e819c5decbe3c88.zip |
Removed initialization script.
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,8 +1,7 @@ #!/bin/bash -# Installation of MongoDB -sudo apt-get install -y mongodb-server -sudo service mongodb start +# Installation of PostgreSQL +sudo apt-get install postgresql postgresql-server-dev-9.1 postgresql-client # Python dependencies sudo apt-get install -y python-pip @@ -13,7 +12,7 @@ pip install --upgrade -r requirements.txt # Configuration cp conf/conf.cfg-sample conf/conf.cfg -python pyaggr3g470r/initialization.py firstname lastname firstname.lastname@mail.com secret +python db_create.py # Launch pyAggr3g470r python runserver.py |