Skip to content

Instantly share code, notes, and snippets.

@hmajid2301
Created March 29, 2020 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmajid2301/f80b8d388d3d33c860b89689a8625bb0 to your computer and use it in GitHub Desktop.
Save hmajid2301/f80b8d388d3d33c860b89689a8625bb0 to your computer and use it in GitHub Desktop.
VSCode Flask Debugger
{
"name": "Flask",
"cwd": "${workspaceRoot}",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "app.py",
"FLASK_ENV": "development",
"FLASK_DEBUG": "1"
},
"args": ["run"],
"jinja": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment