Skip to content

Commit

Permalink
🔧 add vscode debug configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
krmax44 committed Mar 3, 2025
1 parent 533b3fd commit c33f8a9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug running server",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"console": "integratedTerminal",
"args": [
"runserver"
]
}
]
}

0 comments on commit c33f8a9

Please sign in to comment.