fix: improvements to local dev instructions

This commit is contained in:
Gabriel Almeida 2023-03-20 11:58:37 -03:00
commit da7ddf0096

View file

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