Created
May 21, 2020 19:01
-
-
Save buddylindsey/e55e1aed8d8d2a295b7b1220740adeec to your computer and use it in GitHub Desktop.
VS Code Debug with Django add the following to your .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": "Python: Django Shell", | |
"type": "python", | |
"request": "launch", | |
"program": "${workspaceFolder}/manage.py", | |
"args": ["shell_plus"], | |
"django": true | |
}, | |
{ | |
"name": "Python: Django", | |
"type": "python", | |
"request": "launch", | |
"program": "${workspaceFolder}/manage.py", | |
"args": ["runserver", "--noreload"], | |
"django": true | |
} | |
] | |
} |
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
{ | |
"python.pythonPath": ".venv/bin/python3", | |
"python.testing.pytestEnabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment