From aa901d93d83310a95a05af44a909213dc3422912 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Wed, 15 Mar 2023 21:35:28 -0300 Subject: [PATCH] feat: added run commands to makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 9c6f289bc..fa488a1f0 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,12 @@ lint: install_frontend: cd langflow/frontend && npm install +run_frontend: + cd langflow/frontend && npm start + +run_backend: + poetry run uvicorn langflow_backend.main:app --port 5003 --reload + build_frontend: cd langflow/frontend && CI='' npm run build