【VSCode】Djangoデバッグ用のlaunch.json設定メモ
自分用の設定メモ
"configurations": [
{
"name": "Python: Server",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/myapi/manage.py",
"args": [
"runserver",
],
"console": "integratedTerminal"
},
{
"name": "Python: Server2",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/myapi/manage.py",
"args": [
"runserver",
"--settings=myapi.settings.local",
],
"console": "integratedTerminal"
}
]
最近のコメント