Concept Flow - Gunicorn for production serving
Write Flask app
Install Gunicorn
Run Gunicorn with app
Gunicorn starts workers
Workers listen for requests
Requests received -> handled by workers
Responses sent back to clients
Monitor and restart workers if needed
This flow shows how you write a Flask app, then use Gunicorn to run it in production by starting worker processes that handle incoming requests and send responses.