From fbfa6e3ba61c734844c2dad2b28bd47a23af63a1 Mon Sep 17 00:00:00 2001 From: Mauricio Barragan Date: Wed, 10 Jun 2026 13:43:01 -0600 Subject: [PATCH] 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 --- render.yaml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 render.yaml diff --git a/render.yaml b/render.yaml new file mode 100644 index 0000000..5f2625f --- /dev/null +++ b/render.yaml @@ -0,0 +1,42 @@ +# 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"