🚀 chore(Makefile): add install_backend command to backend target

The Makefile has been updated to include the `install_backend` command as a dependency of the `backend` target. This ensures that the backend dependencies are installed before running the backend server.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-06 12:55:12 -03:00
commit 998d1bf5ed

View file

@ -43,6 +43,7 @@ install_backend:
poetry install
backend:
make install_backend
poetry run uvicorn langflow.main:app --port 7860 --reload --log-level debug
build_frontend: