Skip to content

Instantly share code, notes, and snippets.

@poshl9k
Forked from vvvlad/launch
Created October 12, 2021 06:19
Show Gist options
  • Save poshl9k/00258704cef34c90dce1c46c1986bac9 to your computer and use it in GitHub Desktop.
Save poshl9k/00258704cef34c90dce1c46c1986bac9 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