QuAcc/.vscode/launch.json

33 lines
1.0 KiB
JSON
Raw Normal View History

2023-11-08 17:26:44 +01:00
{
// 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": "main",
"type": "python",
"request": "launch",
2023-11-11 18:46:27 +01:00
"program": "~/source/tesi/quacc/main.py",
2023-11-08 17:26:44 +01:00
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "main_test",
"type": "python",
"request": "launch",
"program": "C:\\Users\\Lorenzo Volpi\\source\\tesi\\quacc\\main_test.py",
"console": "integratedTerminal",
"justMyCode": false
},
2023-11-22 19:17:54 +01:00
{
"name": "panel",
"type": "python",
"request": "launch",
"program": "~/source/tesi/qcpanel/run.py",
"console": "integratedTerminal",
"justMyCode": true
},
2023-11-08 17:26:44 +01:00
]
}