Skip to content

Commit

Permalink
Add new debug profile for workstation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchristy committed Sep 11, 2023
1 parent b63c971 commit 20a7014
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,25 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Sample ODS",
"name": "Laptop Sample ODS",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["-i", "wlp2s0", "./ssl-configurations-2023-09-05.ods"]
}
"justMyCode": true,
"args": ["-i", "wlp2s0", "-o", "output.json", "./ssl-configurations-2023-09-05.ods"]
},

{
"name": "Desktop Sample ODS",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true,
"args": ["-i", "enp10s0", "-o", "output.json","./ssl-configurations-2023-09-05.ods"]
},
]
}

0 comments on commit 20a7014

Please sign in to comment.