updating launch.json and gitignore

This commit is contained in:
Jonathan Herrewijnen 2025-01-03 15:28:12 +01:00
parent 2f300eebe7
commit d4e1d08494
2 changed files with 10 additions and 1 deletions

1
.gitignore vendored Normal file → Executable file
View File

@ -1,3 +1,4 @@
venv/ venv/
herrewebpy.egg-info/ herrewebpy.egg-info/
herrewebpy/__pycache__/ herrewebpy/__pycache__/
*.pyc

8
.vscode/launch.json vendored Normal file → Executable file
View File

@ -4,6 +4,14 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{
// Run current file
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{ {
"name": "FF_FunctionExtractor", "name": "FF_FunctionExtractor",
"type": "debugpy", "type": "debugpy",