From e679ab73c416660bbef4518453a3fa32d98f0f7a Mon Sep 17 00:00:00 2001 From: Arjun Natarajan Date: Tue, 25 Feb 2025 15:53:23 -0500 Subject: [PATCH] fix broken docs part --- docs/docs/how-tos/local-studio.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/docs/how-tos/local-studio.md b/docs/docs/how-tos/local-studio.md index 747aa6d69..2f83f4c23 100644 --- a/docs/docs/how-tos/local-studio.md +++ b/docs/docs/how-tos/local-studio.md @@ -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