From 6b63433077ff1875de0412a24b0cda46c82c2e07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Tue, 21 Jul 2026 17:50:22 +0400 Subject: [PATCH] fix: site/ structure (no Procfile) --- Procfile | 1 - requirements.txt | 6 +++--- app.py => site/app.py | 0 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 Procfile rename app.py => site/app.py (100%) diff --git a/Procfile b/Procfile deleted file mode 100644 index c79a8f9..0000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: gunicorn -b 0.0.0.0:$PORT app:app diff --git a/requirements.txt b/requirements.txt index ba31b98..adc89b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -Flask -gunicorn -kafka-python +Flask>=3.0 +gunicorn>=21.2 +kafka-python>=2.0 diff --git a/app.py b/site/app.py similarity index 100% rename from app.py rename to site/app.py