QuAcc/.vscode/launch.json

25 lines
755 B
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-26 16:34:57 +01:00
"program": "~/tesi/quacc/main.py",
2023-11-08 17:26:44 +01:00
"console": "integratedTerminal",
"justMyCode": true
},
2023-11-22 19:17:54 +01:00
{
"name": "panel",
"type": "python",
"request": "launch",
2023-11-26 16:34:57 +01:00
"program": "~/tesi/qcpanel/run.py",
2023-11-22 19:17:54 +01:00
"console": "integratedTerminal",
"justMyCode": true
},
2023-11-08 17:26:44 +01:00
]
}