Create a virtualenv
$virtualenv bookmark-envActivate the environment
$source bookmark-env/bin/activateInstall dependencies
$pip install -r requirements.txtRunning the flask dev server
$flask run # using flask server
or
$gunicorn src.runner:application # if install gunicornYou can access on web browser
flask - http://127.0.0.1:5000
gunicorn - http://127.0.0.1:8000