This commit is contained in:
Dobromir Popov 2024-02-16 21:00:39 +02:00
parent 8de81ee65f
commit 051a2404c4

13
.vscode/launch.json vendored
View File

@ -25,7 +25,7 @@
}, },
{ {
"name": "Docker Python Launch with venv", "name": "Docker Python Launch with venv",
"type": "python", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/agent-py-bot/agent.py", "program": "${workspaceFolder}/agent-py-bot/agent.py",
"console": "integratedTerminal", "console": "integratedTerminal",
@ -33,7 +33,16 @@
"env": { "env": {
"PYTHONUNBUFFERED": "1" "PYTHONUNBUFFERED": "1"
} }
} },
{
"name": "node: Launch server.js",
"type": "node",
"request": "launch",
"program": "conda activate node && node web/server.js",
"skipFiles": [
"<node_internals>/**"
]
}
] ]
} }