diff --git a/.gitignore b/.gitignore index c2ffb8276..cb7805a70 100644 --- a/.gitignore +++ b/.gitignore @@ -5,12 +5,13 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* +qdrant_storage # Mac .DS_Store # VSCode -.vscode +.vscode/settings.json .chroma .ruff_cache diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..b0a48cdc6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + "configurations": [ + { + "name": "Python: FastAPI", + "type": "python", + "request": "launch", + "module": "uvicorn", + "args": [ + "langflow.main:app", + "--port", + "7860", + "--reload", + "--log-level", + "debug" + ], + "jinja": true, + "justMyCode": false + }, + { + "name": "Python: Remote Attach", + "type": "python", + "request": "attach", + "justMyCode": true, + "connect": { + "port": 5678 + }, + "pathMappings": [ + { + "localRoot": "${workspaceFolder}", + "remoteRoot": "." + } + ] + } + ] +}