aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-07-30 15:40:48 +0200
committerAlexis Metaireau <alexis@notmyidea.org>2011-07-30 15:40:48 +0200
commit1229beaf5493284de8886620b681156841f08ed1 (patch)
tree1a89f902767076901ce9c125d5950b786945a7b2 /README.rst
parente214b39b4434c10589b548c387ad9a0e9dd98d2c (diff)
downloadihatemoney-mirror-1229beaf5493284de8886620b681156841f08ed1.zip
ihatemoney-mirror-1229beaf5493284de8886620b681156841f08ed1.tar.gz
ihatemoney-mirror-1229beaf5493284de8886620b681156841f08ed1.tar.bz2
Put the dependencies into a requirements.txt file.
This allows to put them only in one place and to use `pip install -r requirements.txt` in order to install all the dependencies.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index c40161b..625886c 100644
--- a/README.rst
+++ b/README.rst
@@ -16,7 +16,7 @@ To make it run, you just have to do something like::
$ virtualenv venv
$ source venv/bin/activate
- $ pip install flask flask-wtf flask-sqlalchemy
+ $ pip install -r requirements.txt
$ cd budget
$ python budget.py
@@ -27,7 +27,7 @@ To deploy it, I'm using gunicorn and supervisord::
$ virtualenv venv
$ source venv/bin/activate
- $ pip install flask flask-wtf flask-sqlalchemy gunicorn --upgrade
+ $ pip install -r requirements.txt
1. Add the lines in conf/supervisord.conf to your supervisord.conf file.
**adapt them to your paths!**