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",
"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": [
"<node_internals>/**"
]
}
]
}