docs: add step to cd into frontend directory before yarn commands (#8696)

This commit is contained in:
nikhilmantri0902 2025-08-04 14:11:19 +05:30 committed by GitHub
parent db13f85a3c
commit 090538f11f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,17 +75,22 @@ This command:
### 3. Setting up the Frontend ### 3. Setting up the Frontend
1. Install dependencies: 1. Navigate to the frontend directory:
```bash
cd frontend
```
2. Install dependencies:
```bash ```bash
yarn install yarn install
``` ```
2. Create a `.env` file in the `frontend` directory: 3. Create a `.env` file in this directory:
```env ```env
FRONTEND_API_ENDPOINT=http://localhost:8080 FRONTEND_API_ENDPOINT=http://localhost:8080
``` ```
3. Start the development server: 4. Start the development server:
```bash ```bash
yarn dev yarn dev
``` ```