Skip to content

Instantly share code, notes, and snippets.

@vvvlad
Last active October 12, 2021 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vvvlad/444142b27498e9478c2c332642bc0500 to your computer and use it in GitHub Desktop.
Save vvvlad/444142b27498e9478c2c332642bc0500 to your computer and use it in GitHub Desktop.
debug django with javascript in vscode
{
"version": "0.2.0",
"configurations": [
{
"name": "Django",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver""
],
"django": true
},
{
"type": "chrome",
"request": "launch",
"name": "Chrome",
"url": "http://localhost:8000",
"webRoot": "${workspaceFolder}"
}
],
"compounds": [{
"name": "Django/Web",
"configurations": ["Django", "Chrome"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment