chore: Add makemigrations debug launch to vscode

ref: #849
This commit is contained in:
2025-06-24 17:26:24 +09:30
parent b2383a2236
commit 05fd82459a

11
.vscode/launch.json vendored
View File

@ -62,6 +62,17 @@
"autoStartBrowser": false,
"program": "${workspaceFolder}/app/manage.py"
},
{
"name": "Make Migrations",
"type": "debugpy",
"request": "launch",
"args": [
"makemigrations"
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}/app/manage.py"
},
{
"name": "Migrate",
"type": "debugpy",