diff --git a/.vscode/launch.json b/.vscode/launch.json index cc04cbc..d1eed27 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -25,7 +25,7 @@ }, { "name": "Docker Python Launch with venv", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${workspaceFolder}/agent-py-bot/agent.py", "console": "integratedTerminal", @@ -33,7 +33,16 @@ "env": { "PYTHONUNBUFFERED": "1" } + }, + { + "name": "node: Launch server.js", + "type": "node", + "request": "launch", + "program": "conda activate node && node web/server.js", + "skipFiles": [ + "/**" + ] + } - ] } \ No newline at end of file