From 6bfc3bf8ad81a726e77e4065e78264ee69699dd9 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 1 Apr 2024 16:46:23 -0300 Subject: [PATCH] Add installation of backend in start target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 91f273037..9412752d4 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,7 @@ endif start: @echo 'Running the CLI' + @make install_backend ifeq ($(open_browser),false) poetry run langflow run --path src/frontend/build --log-level $(log_level) --host $(host) --port $(port) --env-file $(env) --no-open-browser else