From a0cd1ee468e2b185ea754d1caceda2f343e6260c Mon Sep 17 00:00:00 2001 From: famez Date: Wed, 8 Apr 2026 23:04:41 +0200 Subject: [PATCH] fix(vscode): replace local path with /app in launch.json Co-Authored-By: Claude Sonnet 4.6 --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 534edc4..5405735 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "python", "request": "launch", "module": "pentestagent", - "cwd": "/home/fernando/pentestagent/", + "cwd": "/app", "console": "integratedTerminal", "justMyCode": true }, @@ -21,7 +21,7 @@ "--tui", "--port", "8080" ], - "cwd": "/home/fernando/pentestagent/", + "cwd": "/app", "console": "integratedTerminal", "justMyCode": true }