From cc7d8088f8bcc6b7a5d3e37adf902696810d16c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Wed, 21 Jun 2017 01:34:07 +0200 Subject: [PATCH] Document the dependencies. Fixes #199 --- docs/installation.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index bd8cbcce..3cfc578e 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -18,11 +18,21 @@ We recommend to use `pip `_ and `virtualenv `_ but it will work 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 `_. It's as simple as that! Deploy it