19 lines
488 B
JSON
19 lines
488 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: Flask",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "flask",
|
|
"env": {
|
|
"FLASK_APP": "app", // Replace 'app' with the entry point module of your app
|
|
"FLASK_ENV": "development"
|
|
},
|
|
"args": ["run"],
|
|
"jinja": true,
|
|
"justMyCode": true
|
|
}
|
|
]
|
|
}
|