chore: add vscode launch for debugging app

!13
This commit is contained in:
2024-05-29 03:30:35 +09:30
parent 6cb69c627f
commit 6997232198

20
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
// 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": "Debug: Django",
"type": "debugpy",
"request": "launch",
"args": [
"runserver",
"0.0.0.0:8002"
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}/app/manage.py"
}
]
}