71v2/.vscode/launch.json
Florian du Garage Num 07ccbd3db1 initial commit
2023-04-13 15:34:46 +02:00

20 lines
554 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"args": [
"run",
"--debug",
],
"jinja": true,
"justMyCode": true
}
]
}