Files
travelrouter/.vscode/launch.json
Rich 578d35b965 .
2021-09-03 17:54:03 +01:00

26 lines
767 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",
"--host=0.0.0.0"
],
"jinja": true
}
]
}