-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathrender.yaml
More file actions
47 lines (46 loc) · 1.19 KB
/
render.yaml
File metadata and controls
47 lines (46 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
services:
# ── Agent (LangGraph Python) — private, not exposed to internet ──
- type: pserv
name: open-generative-ui-agent
runtime: docker
plan: starter
dockerfilePath: docker/Dockerfile.agent
healthCheckPath: /ok
envVars:
- key: OPENAI_API_KEY
sync: false
- key: LANGSMITH_API_KEY
sync: false
- key: LLM_MODEL
value: gpt-5.4-2026-03-05
buildFilter:
paths:
- apps/agent/**
- docker/Dockerfile.agent
# ── Frontend (Next.js) — public web service ──
- type: web
name: open-generative-ui-app
runtime: docker
plan: starter
dockerfilePath: docker/Dockerfile.app
envVars:
- key: LANGGRAPH_DEPLOYMENT_URL
fromService:
name: open-generative-ui-agent
type: pserv
property: hostport
- key: LANGSMITH_API_KEY
sync: false
- key: RATE_LIMIT_ENABLED
value: "false"
- key: RATE_LIMIT_WINDOW_MS
value: "60000"
- key: RATE_LIMIT_MAX
value: "40"
buildFilter:
paths:
- apps/app/**
- package.json
- pnpm-lock.yaml
- turbo.json
- docker/Dockerfile.app