fix broken docs part

This commit is contained in:
Arjun Natarajan
2025-02-25 15:53:23 -05:00
parent 6615c6bb0d
commit e679ab73c4
+10 -5
View File
@@ -60,8 +60,8 @@ langgraph dev --debug-port 5678
Then attach your preferred debugger:
=== "VS Code"
Add this configuration to `launch.json`:
`json
Add this configuration to `launch.json`:
```json
{
"name": "Attach to LangGraph",
"type": "debugpy",
@@ -71,7 +71,12 @@ Add this configuration to `launch.json`:
"port": 5678
}
}
`
Specify the port number you chose in the previous step.
```
Specify the port number you chose in the previous step.
=== "PyCharm" 1. Go to Run → Edit Configurations 2. Click + and select "Python Debug Server" 3. Set IDE host name: `localhost` 4. Set port: `5678` (or the port number you chose in the previous step) 5. Click "OK" and start debugging
=== "PyCharm"
1. Go to Run → Edit Configurations
2. Click + and select "Python Debug Server"
3. Set IDE host name: `localhost`
4. Set port: `5678` (or the port number you chose in the previous step)
5. Click "OK" and start debugging