I've a simple falcon app which I'm running on the terminal using the following command,
gunicorn -b 0.0.0.0:5000 main:app --reload
main.py is the python file which instantiates app = falcon.API(). This works.
So I tried to set this config inside of PyCharm. But this I can't get to run. Here's the PyCharm config window
Can someone help me configure this window to get the app running.
