From da7ddf00962b87981cb2d666d26d4d07f8eb0ac2 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Mon, 20 Mar 2023 11:58:37 -0300 Subject: [PATCH] fix: improvements to local dev instructions --- CONTRIBUTING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 68e4b9c11..98dddaa84 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,9 +43,11 @@ the system we use to tag our issues and pull requests. You can develop LangFlow using docker compose, or locally. #### **Docker compose** -This will run the backend and frontend in separate containers. The frontend will be available at `localhost:3000` and the backend at `localhost:5003`. +This will run the backend and frontend in separate containers. The frontend will be available at `localhost:3000` and the backend at `localhost:7860`. ```bash docker compose up --build +# or +make dev build=1 ``` #### **Locally** @@ -58,7 +60,6 @@ Before you start, make sure you have the following installed: For the backend, you will need to install the dependencies and start the development server. ```bash poetry install -# Port 5003 is required for the backend to work with the frontend make run_backend ``` For the frontend, you will need to install the dependencies and start the development server.