1
0
Форкнуть 0
python-sample-vscode-flask-.../.vscode/launch.json

26 строки
721 B
JSON
Исходник Обычный вид История

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": [
{
"name": "Python Debugger: Flask",
"type": "debugpy",
2018-05-14 21:05:44 +03:00
"request": "launch",
"module": "flask",
"env": {
"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",
"--no-reload"
2018-05-14 21:05:44 +03:00
],
"jinja": true,
"justMyCode": true
2018-05-14 21:05:44 +03:00
}
]
2018-07-11 20:07:31 +03:00
}