From 04c63205fd6c9b23b2ae8d66886400c630630e4b Mon Sep 17 00:00:00 2001 From: famez Date: Sun, 8 Feb 2026 13:49:57 +0100 Subject: [PATCH] Configure debugging with vscode (allows to debug inside the container). --- .gitignore | 1 - .vscode/launch.json | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index c79b05d..fa250f8 100644 --- a/.gitignore +++ b/.gitignore @@ -32,7 +32,6 @@ env/ # IDE .idea/ -.vscode/ *.swp *.swo *~ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..1e205f9 --- /dev/null +++ b/.vscode/launch.json @@ -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 + } + ] +}