Files
travelrouter/.vscode/launch.json
Rich c06ae49395 .
2021-07-23 13:30:53 +01:00

25 lines
732 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",
"env": {
"FLASK_APP": "tr.py",
"FLASK_ENV": "development",
"PYDEVD_LOAD_NATIVE_LIB": "0",
"PYDEVD_USE_CYTHON":"0"
},
"args": [
"run",
"--no-debugger"
],
"jinja": true
}
]
}