Add debug configuration for CLI

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-04-02 01:11:47 -03:00
commit bd519ebf35

17
.vscode/launch.json vendored
View file

@ -24,6 +24,23 @@
},
"envFile": "${workspaceFolder}/.env"
},
{
"name": "Debug CLI",
"type": "python",
"request": "launch",
"module": "langflow",
"args": [
"run",
"--path",
"${workspaceFolder}/src/backend/langflow/frontend"
],
"jinja": true,
"justMyCode": false,
"env": {
"LANGFLOW_LOG_LEVEL": "debug"
},
"envFile": "${workspaceFolder}/.env"
},
{
"name": "Python: Remote Attach",
"type": "python",