From 8912ecbdfb993f29c98694d1bdc65a0a439fbf8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Tue, 21 Jul 2026 17:50:23 +0400 Subject: [PATCH] fix: site/ structure (no Procfile) --- Procfile | 1 - requirements.txt | 8 ++++---- app.py => site/app.py | 0 3 files changed, 4 insertions(+), 5 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 68072d3..854d296 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Flask -gunicorn -kafka-python -clickhouse-connect +Flask>=3.0 +gunicorn>=21.2 +kafka-python>=2.0 +clickhouse-connect>=0.7 diff --git a/app.py b/site/app.py similarity index 100% rename from app.py rename to site/app.py