Skip to content

Commit

Permalink
add vscode debug profile
Browse files Browse the repository at this point in the history
  • Loading branch information
versun authored May 16, 2024
1 parent 99f989b commit c676e98
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debug: Django",
"type": "debugpy",
"python": "${workspaceFolder}/venv/bin/python",
"env": {"GEVENT_SUPPORT": "True"},
"request": "launch",
"args": [
"run_dev"
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}/manage.py"
}
]
}

0 comments on commit c676e98

Please sign in to comment.