Flask Web Server
Explore how to set up a Flask web server that serves JSON user data and how to proxy it with Parcel. This lesson helps you create a local development environment that mimics production setups, improving testing and integration between front-end and back-end services.
We'll cover the following...
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, ...