-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
47 lines (45 loc) · 1.61 KB
/
render.yaml
File metadata and controls
47 lines (45 loc) · 1.61 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:
- type: web
name: render-pr-summarizer
runtime: node
buildCommand: npm install && npm run build
startCommand: node dist/main.js
envVars:
- key: PORT
value: 3000
# LLM — set these three vars for your chosen provider.
#
# OpenAI direct:
# OPENAI_API_KEY = your OpenAI key (sk-...)
# OPENAI_BASE_URL = (leave blank — delete the env var or set it to empty)
# OPENAI_MODEL = gpt-4.1-mini (or any OpenAI model)
#
# LiteLLM proxy (or Azure OpenAI, Ollama, etc.):
# OPENAI_API_KEY = your proxy token
# OPENAI_BASE_URL = https://your-litellm-proxy.example.com
# OPENAI_MODEL = claude-haiku-4-5 (or whichever model your proxy serves)
#
# Never set both an OpenAI key and a proxy URL at the same time —
# the key must match the endpoint it is sent to.
- key: OPENAI_API_KEY
sync: false
- key: OPENAI_BASE_URL
sync: false
- key: OPENAI_MODEL
value: gpt-4.1-mini
- key: SCALEKIT_ENVIRONMENT_URL
sync: false
- key: SCALEKIT_CLIENT_ID
sync: false
- key: SCALEKIT_CLIENT_SECRET
sync: false
- key: GITHUB_CONNECTION_NAME
sync: false
- key: SESSION_SECRET
generateValue: true
# Optional — only needed if Render's proxy headers are unreliable.
# The app infers its public URL from x-forwarded-proto and host
# headers automatically, so you can leave this unset on first deploy
# and the OAuth callback will still work.
- key: PUBLIC_BASE_URL
sync: false