QuAcc/.vscode/launch.json

25 lines
807 B
JSON
Raw Normal View History

{
// 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": [
2023-10-27 12:35:25 +02:00
{
"name": "main",
"type": "python",
"request": "launch",
"program": "C:\\Users\\Lorenzo Volpi\\source\\tesi\\quacc\\main.py",
"console": "integratedTerminal",
2023-11-04 00:06:40 +01:00
"justMyCode": true
2023-10-27 12:35:25 +02:00
},
{
"name": "main_test",
2023-10-27 12:35:25 +02:00
"type": "python",
"request": "launch",
"program": "C:\\Users\\Lorenzo Volpi\\source\\tesi\\quacc\\main_test.py",
2023-10-27 12:35:25 +02:00
"console": "integratedTerminal",
"justMyCode": true
},
]
}