From 3c8b93aff21a29ab8ecbaf9ff91f5d69bddcc140 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 1 Apr 2024 16:54:45 -0300 Subject: [PATCH] Update start command in Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9412752d4..7438bbfc2 100644 --- a/Makefile +++ b/Makefile @@ -99,11 +99,11 @@ 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 + @make install_backend && poetry run langflow run --path src/frontend/build --log-level $(log_level) --host $(host) --port $(port) --env-file $(env) --no-open-browser else - poetry run langflow run --path src/frontend/build --log-level $(log_level) --host $(host) --port $(port) --env-file $(env) + @make install_backend && poetry run langflow run --path src/frontend/build --log-level $(log_level) --host $(host) --port $(port) --env-file $(env) endif