From 9c613cf4b72996b950fbc37cfcd44fc0d58fa280 Mon Sep 17 00:00:00 2001 From: Eric0801 <33929918+Eric0801@users.noreply.github.com> Date: Sun, 19 Oct 2025 20:08:05 +0800 Subject: [PATCH] fix: use --chdir instead of cd in Procfile --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 291b377..81adb18 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn -w 2 -b 0.0.0.0:$PORT --timeout 120 main:app +web: gunicorn -w 2 -b 0.0.0.0:$PORT --timeout 120 --chdir /flask main:app