File size: 325 Bytes
5301c48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#### Step 2: Start the Backend

```bash
# Install Python dependencies
pip install -r api/requirements.txt

# Start the API server
python -m web.api.main
```

#### Step 3: Start the Frontend

```bash
NODE_OPTIONS='--inspect' 
npm run dev
```

#### Step 4: Debug the Frontend

```bash
NODE_OPTIONS='--inspect' npm run dev
```