From 3ff7613dd9dc12eaa3b6e96beb105da4e13cdcc1 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Wed, 14 Jan 2026 09:24:33 +0800 Subject: [PATCH] chore: mark `backend` folder as a Python project --- deer-flow.code-workspace | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/deer-flow.code-workspace b/deer-flow.code-workspace index 719590c..652a3f1 100644 --- a/deer-flow.code-workspace +++ b/deer-flow.code-workspace @@ -1,14 +1,17 @@ { "folders": [ - { - "path": "." - }, - { - "path": "backend" - }, - { - "path": "frontend" - } -], - "settings": {} + { + "path": "." + } + ], + "settings": { + "python-envs.pythonProjects": [ + { + "path": "backend", + "envManager": "ms-python.python:venv", + "packageManager": "ms-python.python:pip", + "workspace": "deer-flow" + } + ] + } }