This repo is a clone of https://github.com/miguelgrinberg/flasky
Flask uses two contexts: the application context and the request context. The application context contains the following globals:
current_app: instance of the current flask appg: object used for temporary storage while handling requests
The request context contains the following globals:
request: object containing HTTP requestsession: dictionary of values preserved across requests

