From cd77b7a34a10c4a7131480c9d474745bb0ff40d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Sat, 13 Dec 2025 16:39:33 +0100 Subject: [PATCH] Fix gunicorn start command for Render deployment --- render.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/render.yaml b/render.yaml index 11b100e..d64ca1b 100644 --- a/render.yaml +++ b/render.yaml @@ -3,9 +3,7 @@ services: name: bruno-license-server env: python buildCommand: pip install -r requirements.txt - startCommand: gunicorn server:app + startCommand: gunicorn --bind 0.0.0.0:$PORT server:app envVars: - - key: FLASK_HOST - value: 0.0.0.0 - - key: FLASK_PORT - value: 10000 + - key: PYTHON_VERSION + value: 3.11.0