-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
76 lines (72 loc) · 2.35 KB
/
render.yaml
File metadata and controls
76 lines (72 loc) · 2.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Ravendr v2 — voice-first research demo on
# AssemblyAI (voice) · Render (compute + DB) · Mastra (agents) · You.com (research)
#
# The Workflow service (ravendr-workflow) is created manually in the Render
# dashboard — Blueprint support for the workflow service type is evolving.
# Its slug must match WORKFLOW_SLUG below. Start command: `node dist/render/tasks/index.js`
#
# Shared secrets live in the `ravendr-shared` env group so both services
# pull from one source. Update in one place, both services pick it up.
previews:
generation: automatic
envVarGroups:
- name: ravendr-shared
envVars:
- key: YOU_API_KEY
displayName: You.com API key
description: "From https://you.com/platform"
sensitive: true
sync: false
- key: YOU_BASE_URL
value: https://api.you.com/v1
- key: ANTHROPIC_API_KEY
displayName: Anthropic API key
description: "sk-ant-... — used by Mastra workflow planner + synthesizer"
sensitive: true
sync: false
- key: ANTHROPIC_MODEL
value: claude-sonnet-4-20250514
- key: LOG_LEVEL
value: info
- key: NODE_VERSION
value: "22"
services:
- type: web
name: ravendr-web
runtime: node
plan: starter
healthCheckPath: /health
buildCommand: npm ci && npm run build
preDeployCommand: npm run migrate
startCommand: node dist/server.js
autoDeploy: true
envVars:
- fromGroup: ravendr-shared
# web-only: voice, dispatch, DB
- key: DATABASE_URL
fromDatabase:
name: ravendr-db
property: connectionString
- key: WORKFLOW_SLUG
displayName: Workflow slug
value: ravendr-workflow
- key: RENDER_REGION
value: oregon
- key: ASSEMBLYAI_API_KEY
displayName: AssemblyAI API key
description: "From https://www.assemblyai.com/app"
sensitive: true
sync: false
- key: ASSEMBLYAI_AGENT_URL
value: wss://agents.assemblyai.com/v1/realtime
- key: ASSEMBLYAI_VOICE
value: claire
- key: RENDER_API_KEY
displayName: Render API key
description: "Used to dispatch workflow tasks. From https://dashboard.render.com/settings/api-keys"
sensitive: true
sync: false
databases:
- name: ravendr-db
plan: basic-256mb
postgresMajorVersion: "16"