Document the dependencies. Fixes #199

This commit is contained in:
Alexis Métaireau 2017-06-21 01:34:07 +02:00
parent 78ddd3fd8d
commit cc7d8088f8

View file

@ -18,11 +18,21 @@ We recommend to use `pip <https://pypi.python.org/pypi/pip/>`_ and
`virtualenv <https://pypi.python.org/pypi/virtualenv>`_ but it will work `virtualenv <https://pypi.python.org/pypi/virtualenv>`_ but it will work
without if you prefer. without if you prefer.
If you have everything installed, you can just issue If you have everything installed, you can just issue::
$ make serve make serve
And then you can point your browser at `http://localhost:5000`. Alternatively, you can also use the `requirements.txt` file to install the
dependencies yourself (that's what the `make serve` does). That would be::
pip install -r requirements.txt
And then run the application::
cd budget
python run.py
In any case, you can point your browser at `http://localhost:5000 <http://localhost:5000>`_.
It's as simple as that! It's as simple as that!
Deploy it Deploy it