Skip to content

Commit 43f7bca

Browse files
committed
feat: update video syntax in README and add environment reloader to server.py
1 parent 94187e5 commit 43f7bca

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
> An AI-powered, project-aware coding assistant MCP server built with Gemini 2.0 Flash and UV.
44
> Plug it into Antigravity or Claude Desktop and get a full AI engineering team: debugging, reviewing, testing, deploying, and securing your code — all autonomously.
55
6-
<p align="center">
7-
<video src="DevGuardian.mp4" width="850" autoplay loop muted controls></video>
8-
</p>
6+
![DevGuardian Demonstration](DevGuardian.mp4)
97

108
---
119

devguardian/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,8 @@ async def list_tools() -> list[types.Tool]:
454454
# ---------------------------------------------------------------------------
455455
@app.call_tool()
456456
async def call_tool(name: str, arguments: dict) -> list[types.TextContent]:
457+
# 🕵️ Reload environment variables on every call to support hot-updating .env files
458+
load_dotenv(override=True)
457459
logger.info(f"Tool called: {name}")
458460

459461
def text(result) -> list[types.TextContent]:

0 commit comments

Comments
 (0)