How to Run a Python Application with Gunicorn Using Bazel
I’m working on a Python project where I need to use Bazel to manage my builds. I want to run my Python application using gunicorn as the HTTP server. I’ve already added gunicorn as a dependency in my requirements.txt file. However, I’m not sure how to configure Bazel to use gunicorn as the runner for my application. Can someone provide a clear example or guide on how to set this up?