Last active
October 12, 2021 06:19
-
-
Save vvvlad/444142b27498e9478c2c332642bc0500 to your computer and use it in GitHub Desktop.
debug django with javascript in vscode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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