Configure debugging with vscode (allows to debug inside the container).

This commit is contained in:
famez
2026-02-08 13:49:57 +01:00
parent d2f42fd7b0
commit 04c63205fd
2 changed files with 14 additions and 1 deletions

1
.gitignore vendored
View File

@@ -32,7 +32,6 @@ env/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~

14
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug pentestagent (module)",
"type": "python",
"request": "launch",
"module": "pentestagent",
"cwd": "/app",
"console": "integratedTerminal",
"justMyCode": true
}
]
}