Skip to content

Commit ea17ba4

Browse files
santigamoclaude
andcommitted
feat: add Render deployment blueprint
render.yaml configures a free-tier Docker web service with health check and secret env var prompts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 724db33 commit ea17ba4

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ uv.lock
1414
*.egg-info/
1515
.vscode/
1616
.claude/
17-
node_modules/
18-
.wrangler/

render.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
services:
2+
- type: web
3+
runtime: docker
4+
name: xmcp
5+
plan: free
6+
healthCheckPath: /health
7+
envVars:
8+
- key: MCP_HOST
9+
value: "0.0.0.0"
10+
- key: MCP_PORT
11+
value: "10000"
12+
- key: X_MCP_PUBLIC_URL
13+
sync: false
14+
- key: X_OAUTH2_CLIENT_ID
15+
sync: false
16+
- key: X_OAUTH2_CLIENT_SECRET
17+
sync: false
18+
- key: X_ALLOWED_USER_ID
19+
sync: false
20+
- key: X_BEARER_TOKEN
21+
sync: false
22+
- key: X_OAUTH2_SCOPES
23+
value: "tweet.read tweet.write users.read offline.access"

0 commit comments

Comments
 (0)