Skip to content

Commit

Permalink
Merge pull request #492 from bento-platform/chore/update-debugpy-json
Browse files Browse the repository at this point in the history
chore: update debugpy JSON for VS code
  • Loading branch information
davidlougheed committed Mar 20, 2024
2 parents f3b8680 + 1a29671 commit 3c23bb8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"configurations": [
{
"name": "Python: Django Test",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
Expand All @@ -15,7 +15,7 @@
},
{
"name": "Python: Run Django",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"console": "integratedTerminal",
Expand All @@ -28,10 +28,12 @@
},
{
"name": "Python: Attach Debugger (Bento)",
"type": "python",
"type": "debugpy",
"request": "attach",
"port": 5678,
"host": "0.0.0.0"
"connect": {
"host": "0.0.0.0",
"port": 5678
}
}
]
}

0 comments on commit 3c23bb8

Please sign in to comment.