Skip to content

Commit 20cd544

Browse files
committed
fix: remove agent postinstall that breaks frontend build on Render
The postinstall "uv sync" hook runs during pnpm install on the frontend Node service where uv is not available. The agent service has its own buildCommand in render.yaml. Also updates dev script to match the new native FastAPI setup and drops the unused langgraph-cli dependency.
1 parent 1bfd51b commit 20cd544

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

apps/agent/package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "npx @langchain/langgraph-cli dev --port 8123 --no-browser",
7-
"postinstall": "uv sync"
8-
},
9-
"devDependencies": {
10-
"@langchain/langgraph-cli": "^1.1.12"
6+
"dev": "uv run uvicorn main:app --host 0.0.0.0 --port 8123 --reload"
117
}
128
}

0 commit comments

Comments
 (0)