2018-05-14 21:05:44 +03:00
|
|
|
{
|
|
|
|
// 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": [
|
|
|
|
{
|
2024-02-28 00:46:56 +03:00
|
|
|
"name": "Python Debugger: Flask",
|
|
|
|
"type": "debugpy",
|
2018-05-14 21:05:44 +03:00
|
|
|
"request": "launch",
|
|
|
|
"module": "flask",
|
|
|
|
"env": {
|
2024-02-28 00:46:56 +03:00
|
|
|
"FLASK_APP": "hello_app.webapp",
|
|
|
|
"FLASK_DEBUG": "1"
|
2018-05-14 21:05:44 +03:00
|
|
|
},
|
|
|
|
"args": [
|
2018-05-25 21:07:18 +03:00
|
|
|
"run",
|
|
|
|
"--no-debugger",
|
2024-02-28 00:46:56 +03:00
|
|
|
"--no-reload"
|
2018-05-14 21:05:44 +03:00
|
|
|
],
|
2024-02-28 00:46:56 +03:00
|
|
|
"jinja": true,
|
|
|
|
"justMyCode": true
|
2018-05-14 21:05:44 +03:00
|
|
|
}
|
|
|
|
]
|
2018-07-11 20:07:31 +03:00
|
|
|
}
|