-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
35 lines (29 loc) · 796 Bytes
/
render.yaml
File metadata and controls
35 lines (29 loc) · 796 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
35
# Render.com deployment configuration
# Docs: https://render.com/docs/blueprint-spec
services:
- type: web
name: clawdbot-deepseek
runtime: python
plan: standard
region: oregon
buildCommand: pip install -r requirements-deploy.txt
startCommand: python app.py
# Environment variables
envVars:
- key: DEEPSEEK_API_KEY
sync: false # Set via Render dashboard
- key: PYTHON_VERSION
value: 3.11.0
- key: PORT
value: 10000
- key: WORKSPACE_PATH
value: /data/workspace
# Persistent disk for memory files
disk:
name: workspace
mountPath: /data/workspace
sizeGB: 1
# Auto-deploy on git push
autoDeploy: true
# Health check
healthCheckPath: /health