refactor(Makefile): rename run_backend target to backend and add install_backend target

feat(Makefile): add frontend target to install and run frontend app using npm
This commit is contained in:
Gabriel Almeida 2023-04-27 17:24:25 -03:00
commit 45c04befe7

View file

@ -26,7 +26,14 @@ install_frontend:
run_frontend:
cd src/frontend && npm start
run_backend:
frontend:
make install_frontend
make run_frontend
install_backend:
poetry install
backend:
poetry run uvicorn langflow.main:app --port 7860 --reload --log-level debug
build_frontend: