How to debug flask.app with pycharm 2.x that's running on gunicorn

前端 未结 4 827
清酒与你
清酒与你 2021-01-31 09:34

I\'m developing a flask.app that uses web socket functionality and installed flask-socket to provide that. So the flask-socket developer recommends gunicorn as web server. My qu

4条回答
  •  鱼传尺愫
    2021-01-31 10:11

    My case for PyCharm 2018.1.3 Professional:

    1. Go to run/debug configurations creating-and-editing-run-debug-configurations

    2. Choose new "Python" config

    3. Script path: your_path_to_/venv/bin/gunicorn
    4. Parameters(for my case): -b :5001 --access-logfile - --error-logfile - "run:create_application()"
    5. Python interpreter: your venv python version for project
    6. Working directory: path to your project
    7. Save and press DEBUG (Shift+F9)
    8. be happy!

提交回复
热议问题