-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
48 lines (46 loc) · 1.72 KB
/
render.yaml
File metadata and controls
48 lines (46 loc) · 1.72 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
# Standalone deploy for this repo. For the Samples monorepo, prefer /render.yaml at repository root.
previews:
generation: automatic
services:
- type: web
name: render-workflows-llamaindex
runtime: node
plan: starter
buildCommand: npm install && npm run build
startCommand: node dist/main.js
healthCheckPath: /health
envVars:
- key: RENDER_API_KEY
displayName: Render API Key
description: "Required: your Render API key for triggering workflow tasks. Get one at https://render.com/docs/api#1-create-an-api-key"
required: true
sensitive: true
sync: false
- key: WORKFLOW_SLUG
displayName: Workflow Slug
description: "The slug of the workflow service (defaults to render-workflows-llamaindex-workflow)"
required: false
sync: false
- key: LLAMA_CLOUD_API_KEY
displayName: LlamaCloud API Key
description: "Required: your LlamaCloud API key for document processing. Get one at https://cloud.llamaindex.ai"
required: true
sensitive: true
sync: false
- key: LLAMACLOUD_PIPELINE_ID
displayName: LlamaCloud Pipeline ID
description: "Optional: LlamaCloud pipeline ID for semantic search and RAG. Create one at https://cloud.llamaindex.ai"
required: false
sync: false
- key: DATABASE_URL
fromDatabase:
name: llamaindex-docs-db
property: connectionString
- key: SESSION_LIFETIME_MINUTES
value: "15"
description: "Ephemeral session lifetime in minutes. Sessions and their documents are deleted after expiry."
required: false
databases:
- name: llamaindex-docs-db
plan: free
postgresMajorVersion: 16