Update path in Makefile
This commit is contained in:
parent
7745d6b01a
commit
619eb8eaa7
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
|
@ -6,6 +6,7 @@ host ?= 0.0.0.0
|
|||
port ?= 7860
|
||||
env ?= .env
|
||||
open_browser ?= true
|
||||
path = src/backend/base/langflow/frontend
|
||||
|
||||
setup_poetry:
|
||||
pipx install poetry
|
||||
|
|
@ -101,9 +102,9 @@ start:
|
|||
@echo 'Running the CLI'
|
||||
|
||||
ifeq ($(open_browser),false)
|
||||
@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
|
||||
@make install_backend && poetry run langflow run --path $(path) --log-level $(log_level) --host $(host) --port $(port) --env-file $(env) --no-open-browser
|
||||
else
|
||||
@make install_backend && 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 $(path) --log-level $(log_level) --host $(host) --port $(port) --env-file $(env)
|
||||
endif
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue