-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathrender.yaml
More file actions
35 lines (35 loc) · 955 Bytes
/
render.yaml
File metadata and controls
35 lines (35 loc) · 955 Bytes
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
services:
# ── Frontend (Next.js) — native Node runtime ──
- type: web
name: open-generative-ui-app
runtime: node
plan: starter
scaling:
minInstances: 1
maxInstances: 3
targetMemoryPercent: 80
targetCPUPercent: 70
buildCommand: corepack enable && pnpm install --no-frozen-lockfile && pnpm --filter @repo/app build
startCommand: pnpm --filter @repo/app start
healthCheckPath: /api/health
envVars:
- key: NODE_VERSION
value: "22"
- key: SKIP_INSTALL_DEPS
value: "true"
- key: LANGGRAPH_DEPLOYMENT_URL
sync: false
- 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