Skip to content

Commit

Permalink
Merge pull request #8406 from cfpb/feature/vscode-debug
Browse files Browse the repository at this point in the history
Add VSCode debugger launch configuration
  • Loading branch information
chosak authored May 13, 2024
2 parents 37f74d1 + fcf57f1 commit d60a9aa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Django runserver",
"type": "debugpy",
"request": "launch",
"args": ["runserver"],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}/cfgov/manage.py"
}
]
}

0 comments on commit d60a9aa

Please sign in to comment.