Update page 'Home'

Gergely Polonkai 2018-07-23 11:10:22 +00:00
parent 559a7873ca
commit fd7c5fb2b4

10
Home.md

@ -54,4 +54,12 @@ To start the app, you just have to run `calsocial` as a module:
pipenv run env flask run
After this, your local instance is available on http://127.0.0.1:5000/
After this, your local instance is available on http://127.0.0.1:5000/
## Run the tests
To run tests, use `pytest` (`PYTHONPATH` needs to be set explicitly, as `pipenv` doesnt do it by default):
pipenv run env PYTHONPATH=$(pwd) pytest --cov=calsocial
This will also print a nice coverage report at the end.