mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 20:53:55 +08:00
🔧 chore(Makefile): add debug log level and increase number of workers for backend execution to improve debugging and performance
This commit is contained in:
4
Makefile
4
Makefile
@ -74,10 +74,10 @@ backend:
|
||||
make install_backend
|
||||
ifeq ($(login),1)
|
||||
@echo "Running backend without autologin";
|
||||
poetry run langflow run --backend-only --port 7860 --host 0.0.0.0 --no-open-browser
|
||||
poetry run langflow run --backend-only --port 7860 --host 0.0.0.0 --no-open-browser --log-level debug --workers 3
|
||||
else
|
||||
@echo "Running backend with autologin";
|
||||
LANGFLOW_AUTO_LOGIN=True poetry run langflow run --backend-only --port 7860 --host 0.0.0.0 --no-open-browser
|
||||
LANGFLOW_AUTO_LOGIN=True poetry run langflow run --backend-only --port 7860 --host 0.0.0.0 --no-open-browser --log-level debug --workers 3
|
||||
endif
|
||||
|
||||
build_and_run:
|
||||
|
||||
Reference in New Issue
Block a user