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 + } + ] +}