diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-30 15:40:48 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-30 15:40:48 +0200 |
| commit | 1229beaf5493284de8886620b681156841f08ed1 (patch) | |
| tree | 1a89f902767076901ce9c125d5950b786945a7b2 /README.rst | |
| parent | e214b39b4434c10589b548c387ad9a0e9dd98d2c (diff) | |
| download | ihatemoney-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.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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!** |
