Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 402 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 402 Bytes

#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)