- 
Install Flask and Requests
 - 
Set up Flask to run in debug mode
 
- 
Macs:
export FLASK_DEBUG=1
export FLASK_APP=app.py - 
PCs:
set FLASK_DEBUG=1
set FLASK_APP=app.py 
- Run app
 
flask run
- Add code and templates
 
You'll work in app.py, github_api.py and with files in the templates directory.