feat: added run commands to makefile

This commit is contained in:
Gabriel Almeida 2023-03-15 21:35:28 -03:00
commit aa901d93d8

View file

@ -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