#Globus Challenge Flask App
Create a Python environment and install flask module
$ virtualenv venv
$ . venv/bin/activate
$ pip install flask
Untar the challenge archive and run the challenge app
$ tar -xzvf challenge-1.1.tar.gz
$ cd challenge-1.1
$ export FLASK_APP=challenge.py
$ flask run
* Serving Flask app "challenge"
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)