This commit is contained in:
David Brazda
2024-10-16 12:38:24 +02:00
parent 15439bb98f
commit b64aa93c9b
3 changed files with 3 additions and 53 deletions

4
.gitignore vendored
View File

@ -1,2 +1,4 @@
/.venv/ /.venv/
.venv .venv
/.vscode/
.vscode

49
.vscode/launch.json vendored
View File

@ -1,49 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"port": 5678, // or the port used by your Jupyter server
"justMyCode": false
},
{
"name": "Python: Aktuální soubor",
"type": "python",
"request": "launch",
"program": "${file}",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}:${workspaceFolder}/bld"
},
"console": "integratedTerminal",
"justMyCode": false,
"python": "${command:python.interpreterPath}",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Python: Main",
"type": "python",
"request": "launch",
"program": "v2realbot/main.py",
"justMyCode": false
},
{
"name": "Python: File",
"type": "python",
"request": "launch",
"program": "${file}",
"justMyCode": false
},
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
}
}
]
}

View File

@ -1,3 +0,0 @@
{
"git.ignoreLimitWarning": true
}