25 lines
671 B
JSON
Raw Normal View History

2025-05-10 13:58:58 +01:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
2025-05-10 13:58:58 +01:00
"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"
2025-05-10 13:58:58 +01:00
}
]
2023-09-14 12:16:18 +01:00
}