Files
Mauricio Barragan fbfa6e3ba6 Add render.yaml for Render Docker deploy with env vars and health check.
Documents production web service config (free tier, Singapore, main branch auto-deploy).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-10 13:43:01 -06:00

43 lines
1.0 KiB
YAML

# Render Blueprint — arb-pulse production (Docker, branch main)
# https://render.com/docs/blueprint-spec
services:
- type: web
name: arb-pulse
runtime: docker
plan: free
region: singapore
repo: https://github.com/mauricioabh/arbpulse
branch: main
autoDeployTrigger: commit
healthCheckPath: /api/health
dockerfilePath: ./Dockerfile
dockerContext: .
envVars:
- key: NODE_ENV
value: production
- key: STALE_MS
value: "3000"
- key: FLICKER_CONFIRM_MS
value: "150"
- key: MIN_NET_PROFIT_PCT
value: "0.0005"
- key: MAX_TRADE_BTC
value: "0.25"
- key: LATENCY_MS
value: "120"
- key: LATENCY_SLIPPAGE_BPS
value: "2"
- key: CIRCUIT_BREAKER_LOSSES
value: "5"
- key: CIRCUIT_BREAKER_COOLDOWN_MS
value: "15000"
- key: INITIAL_USDT
value: "50000"
- key: INITIAL_BTC
value: "0.5"
- key: DEMO_MODE
value: "false"
- key: RECORD_FEED
value: "false"