This commit is contained in:
KatKatKateryna 2024-01-04 17:31:58 +00:00
Родитель b1867337ee
Коммит e5ca9bc1a4
2 изменённых файлов: 41 добавлений и 1 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -1,5 +1,4 @@
./idea/
/.vscode/
/speckle_qgis_dialog_base.ui.autosave
# Byte-compiled / optimized / DLL files

41
.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,41 @@
{
// 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": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONPATH": "C:/Users/katri/AppData/Roaming/Python/Python39"
}
},
{
"name": "Python: Remote Attach",
"type": "python",
"request": "attach",
"port": 5678,
"host": "localhost",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
}
]
},
{
"name": "Pytest",
"type": "python",
"request": "launch",
"program": "pytest",
"args": [],
"console": "integratedTerminal",
"justMyCode": true
}
]
}