From a05d37ba28470533a36c3636c2a789df4c0b9762 Mon Sep 17 00:00:00 2001 From: Abhivyakti Date: Mon, 12 Jan 2026 18:38:14 +0530 Subject: [PATCH 1/2] docs: fix Flask command path for code-graph backend --- docs/INSTALL_GUIDE.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/INSTALL_GUIDE.md b/docs/INSTALL_GUIDE.md index 8849d5d..414ef89 100644 --- a/docs/INSTALL_GUIDE.md +++ b/docs/INSTALL_GUIDE.md @@ -68,11 +68,17 @@ Go to docker dekstop and start the containers 8. **Start the backend server** ```sh +# Terminal 1 cd backend -poetry run python main.py # Terminal 1 -poetry run python start_github_mcp_server.py # Terminal 2 (Start MCP server) -flask --app api/index.py run --debug --port 5000 # Terminal 3 (Start graphDB) -``` +poetry run python main.py + +# Terminal 2 (Start MCP server) +cd backend +poetry run python start_github_mcp_server.py + +# Terminal 3 (Start graphDB / Code Graph Backend) +cd backend/app/database/falkor/code-graph-backend +flask --app api.index run --debug --port 5000``` 9. **Start the frontend** (in a new terminal) ```sh From 3a9ce78709d1e0590b5f147363eb267305aedabf Mon Sep 17 00:00:00 2001 From: Abhivyakti Date: Mon, 12 Jan 2026 19:16:21 +0530 Subject: [PATCH 2/2] docs: fix backend startup instructions formatting --- docs/INSTALL_GUIDE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/INSTALL_GUIDE.md b/docs/INSTALL_GUIDE.md index 414ef89..f0125f3 100644 --- a/docs/INSTALL_GUIDE.md +++ b/docs/INSTALL_GUIDE.md @@ -78,7 +78,8 @@ poetry run python start_github_mcp_server.py # Terminal 3 (Start graphDB / Code Graph Backend) cd backend/app/database/falkor/code-graph-backend -flask --app api.index run --debug --port 5000``` +flask --app api.index run --debug --port 5000 +``` 9. **Start the frontend** (in a new terminal) ```sh