Refactor launch.json to standardize configuration names and paths
This commit is contained in:
parent
5f228e7819
commit
011c617328
1 changed files with 5 additions and 5 deletions
10
.vscode/launch.json
vendored
10
.vscode/launch.json
vendored
|
|
@ -2,7 +2,7 @@
|
|||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python Debugger: Django",
|
||||
"name": "Django",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
|
|
@ -10,19 +10,19 @@
|
|||
],
|
||||
"django": true,
|
||||
"autoStartBrowser": false,
|
||||
"program": "${workspaceFolder}\\manage.py"
|
||||
"program": "${workspaceFolder}/manage.py"
|
||||
},
|
||||
{
|
||||
"name": "Python Debugger: Import Drops",
|
||||
"name": "Import Drops",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"import_drops",
|
||||
"C:\\Responses"
|
||||
"${workspaceFolder}/Responses"
|
||||
],
|
||||
"django": false,
|
||||
"autoStartBrowser": false,
|
||||
"program": "${workspaceFolder}\\manage.py"
|
||||
"program": "${workspaceFolder}/manage.py"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue