-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
34 lines (33 loc) · 787 Bytes
/
render.yaml
File metadata and controls
34 lines (33 loc) · 787 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
services:
# API Server - Node.js backend for AI chat
- type: web
name: shiny-ai-server
runtime: docker
dockerfilePath: ./docker/server.Dockerfile
dockerContext: .
region: oregon
plan: free
healthCheckPath: /health
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: "3000"
- key: ANTHROPIC_API_KEY
sync: false
- key: OPENAI_API_KEY
sync: false
- key: CORS_ORIGIN
sync: false
# Shiny Dashboard - R/Shiny frontend
- type: web
name: shiny-ai-dashboard
runtime: docker
dockerfilePath: ./docker/shiny.Dockerfile
dockerContext: .
region: oregon
plan: free
healthCheckPath: /health
envVars:
- key: SHINY_AI_API_URL
sync: false