mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 13:09:51 -06:00
26 lines
741 B
JSON
Executable File
26 lines
741 B
JSON
Executable File
{
|
|
// 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",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}/src",
|
|
"module": "flask",
|
|
"env": {
|
|
"FLASK_APP": "app.py",
|
|
"FLASK_DEBUG": "1",
|
|
|
|
},
|
|
"args": [
|
|
"run",
|
|
"--no-debugger",
|
|
"--no-reload"
|
|
],
|
|
"jinja": true
|
|
}
|
|
]
|
|
} |