Flask Web Server

Learn how to set up a Flask server and use it for bank-end REST services.

We'll cover the following...

Introduction

In our development environment, there will likely be times when we are running our back-end REST services, like Flask, that our application relies on to get its data from. In production, we would conventionally have a public-facing web server that responds to all requests for our application. It would then forward, or proxy, ...