#Flask testapp
###To run flask server running on localhost:5000
python runserver.py
###To start gunicorn server running on localhost:8000
gunicorn --config=gunicorn.config.py wsgi:app
###To run tests
python runtests.py
###To run tests with coverage
coverage run --source application runtests.py
###To see coverage result
coverage report -m
For text output
coverage html
For html output
###To install dependencies ` pip install -r requirements.txt