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:
parent
917cc51148
commit
45c04befe7
1 changed files with 8 additions and 1 deletions
9
Makefile
9
Makefile
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue