{ "version": "0.2.0", "configurations": [ { "name": "Python: Flask", "type": "python", "request": "launch", "module": "flask", "env": { "FLASK_APP": "ktvmanager.main:create_app()", "FLASK_DEBUG": "1" }, "args": [ "run", "--no-debugger", "--no-reload", "--host=0.0.0.0", "--port=5001" ], "jinja": true, "justMyCode": true, "python": "${workspaceFolder}/.venv/bin/python" } ] }