From 61d8f8edcc657e5571659a840c05a192a7ebdd14 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 25 Jul 2023 11:42:05 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(launch.json):=20update=20u?= =?UTF-8?q?vicorn=20args=20to=20use=20--factory=20flag=20and=20specify=20t?= =?UTF-8?q?he=20correct=20app=20factory=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3b458aa81..e09e76cc8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,8 @@ "request": "launch", "module": "uvicorn", "args": [ - "langflow.main:app", + "--factory", + "langflow.main:create_app", "--port", "7860", "--reload",