Update CLI run command to include environment file
This commit is contained in:
parent
92ab5a1619
commit
9903c01c4c
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -57,14 +57,14 @@ run_cli:
|
|||
@make install_frontend > /dev/null
|
||||
@echo 'Building the frontend'
|
||||
@make build_frontend > /dev/null
|
||||
poetry run langflow run --path src/frontend/build --host $(host) --port $(port)
|
||||
poetry run langflow run --path src/frontend/build --host $(host) --port $(port) --env-file .env
|
||||
|
||||
run_cli_debug:
|
||||
@echo 'Running the CLI in debug mode'
|
||||
@make install_frontend > /dev/null
|
||||
@echo 'Building the frontend'
|
||||
@make build_frontend > /dev/null
|
||||
poetry run langflow run --path src/frontend/build --log-level debug --host $(host) --port $(port)
|
||||
poetry run langflow run --path src/frontend/build --log-level debug --host $(host) --port $(port) --env-file .env
|
||||
|
||||
setup_devcontainer:
|
||||
make init
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue