aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-12-06 14:49:49 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-12-06 14:49:49 +0100
commit6dcdeac390fc15d6bcd098b6f89cefd243576e95 (patch)
tree2746ebc35a5894461284301e4617e1eae7ef7a29 /README.md
parentAdded install.sh for installation with virtualenv. (diff)
downloadnewspipe-6dcdeac390fc15d6bcd098b6f89cefd243576e95.tar.gz
newspipe-6dcdeac390fc15d6bcd098b6f89cefd243576e95.tar.bz2
newspipe-6dcdeac390fc15d6bcd098b6f89cefd243576e95.zip
Updated README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 8 insertions, 11 deletions
diff --git a/README.md b/README.md
index 92c9bb97..87179368 100644
--- a/README.md
+++ b/README.md
@@ -19,22 +19,19 @@ Features
Some [screen shots](https://plus.google.com/u/0/photos/106973022319954455496/albums/5449733578800221153) of pyAggr3g470r.
-Requierements
--------------
+Installation
+------------
You need to have installed Python >= 2.7, MongoDB and some Python libraries.
-
- $ sudo apt-get install mongodb-server python-pip
- $ sudo pip install --upgrade -r requirements.txt
-
-Configuration
--------------
-
-You can use the script **initialization.py** to create your user.
Configuration is done via the file **conf/conf.cfg**.
- $ python initialization.py database_name firstname lastname email password
+ $ sudo apt-get install mongodb-server python-pip
+ $ pip install --user virtualenv
+ $ virtualenv --no-site-packages ./env_pyAggr3g470r
+ $ source ./env_pyAggr3g470r/bin/activate
+ $ pip install --upgrade -r requirements.txt
$ cp conf/conf.cfg-sample conf/conf.cfg
+ $ python initialization.py database_name firstname lastname email password
$ python runserver.py
Backup
bgstack15