retreat commit

This commit is contained in:
David Brázda
2023-10-09 09:15:52 +02:00
parent a6678f9a4f
commit be93c17848
93 changed files with 16821 additions and 2561 deletions

16
.vscode/launch.json vendored
View File

@ -1,7 +1,4 @@
{
// Pro informace o možných atributech použijte technologii IntelliSense.
// Umístěním ukazatele myši zobrazíte popisy existujících atributů.
// Další informace najdete tady: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
@ -10,8 +7,19 @@
"request": "launch",
"program": "${file}",
"cwd": "${workspaceFolder}",
"env": {"PYTHONPATH": "${workspaceFolder}:${workspaceFolder}/bld"},
"env": {
"PYTHONPATH": "${workspaceFolder}:${workspaceFolder}/bld"
},
"console": "integratedTerminal",
"justMyCode": true,
"python": "${command:python.interpreterPath}",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Python: File",
"type": "python",
"request": "launch",
"program": "${file}",
"justMyCode": true
}
]