SXXXXXXX_PyUCC/.vscode/launch.json
VALLONGOL 4fdd646d60 Chore: Stop tracking files based on .gitignore update.
Untracked files matching the following rules:
- Rule "*.zip": 1 file
2025-11-24 10:15:59 +01:00

20 lines
453 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "PyUcc: Launch GUI",
"type": "python",
"request": "launch",
"module": "pyucc",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONPATH": "${workspaceFolder}",
"VIRTUAL_ENV": "${workspaceFolder}/.venv",
"PATH": "${workspaceFolder}/.venv/bin:${env:PATH}"
}
}
]
}