-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
40 lines (34 loc) · 1.28 KB
/
render.yaml
File metadata and controls
40 lines (34 loc) · 1.28 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
# render.yaml — Render Blueprint
# Defines both services declaratively. Commit this to your repo.
# Render reads it automatically when you connect the repo.
#
# Docs: https://render.com/docs/blueprint-spec
services:
# ── FastAPI REST API ──────────────────────────────────────────────────────
- type: web
name: fnewsteer-api
runtime: docker
dockerfilePath: packages/api/Dockerfile
dockerContext: . # workspace root — required for uv workspace
plan: free
region: oregon
healthCheckPath: /health
envVars:
- key: FNEWSTEER_API_KEY
sync: false # set manually in Render dashboard (never commit secrets)
# ── MCP SSE Server ────────────────────────────────────────────────────────
- type: web
name: fnewsteer-mcp
runtime: docker
dockerfilePath: packages/mcp/Dockerfile
dockerContext: .
plan: free
region: oregon
healthCheckPath: /health
envVars:
- key: FNEWSTEER_API_KEY
sync: false
- key: MCP_SSE_HOST
value: '0.0.0.0'
- key: MCP_SSE_PORT
value: '10000'