Skip to content

Instantly share code, notes, and snippets.

@rnovec
Created November 10, 2020 03:49
Show Gist options
  • Save rnovec/4f86d07a67016731981405c43404245b to your computer and use it in GitHub Desktop.
Save rnovec/4f86d07a67016731981405c43404245b to your computer and use it in GitHub Desktop.
Debbuger config file for Django app
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"console": "integratedTerminal",
"args": [
"runserver"
],
"django": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment