From 19894b3ee8f1dc7ec70f04041f96a0eca968ea25 Mon Sep 17 00:00:00 2001 From: "codegen-sh[bot]" <131295404+codegen-sh[bot]@users.noreply.github.com> Date: Sat, 26 Apr 2025 21:20:02 +0000 Subject: [PATCH 1/2] Update Python version to 3.11.11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8848501..9f1c581 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.11.11-slim WORKDIR /app From 41fedbc1350704bb6de88230fa33fec8d9bc7e20 Mon Sep 17 00:00:00 2001 From: "codegen-sh[bot]" <131295404+codegen-sh[bot]@users.noreply.github.com> Date: Sat, 26 Apr 2025 21:20:20 +0000 Subject: [PATCH 2/2] Update Python version to 3.11.11 --- JIT | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 JIT diff --git a/JIT b/JIT new file mode 100644 index 0000000..580e801 --- /dev/null +++ b/JIT @@ -0,0 +1,19 @@ +services: + - type: web + name: jit-backend + env: python + buildCommand: pip install -r requirements.txt + startCommand: gunicorn app:app + envVars: + - key: PYTHON_VERSION + value: 3.11.11 + - key: JWT_SECRET_KEY + generateValue: true + - key: DROPBOX_APP_KEY + value: 2bi422xpd3xd962 + - key: DROPBOX_APP_SECRET + value: j3yx0b41qdvfu86 + - key: DROPBOX_REFRESH_TOKEN + value: RvyL03RE5qAAAAAAAAAAAVMVebvE7jDx8Okd0ploMzr85c6txvCRXpJAt30mxrKF + healthCheckPath: /health + autoDeploy: true Backend/render.yaml