From 34c030c8afac7f99454016298d07725e9901385a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 20 Jul 2026 12:12:31 +0400 Subject: [PATCH] fix: move code to site/ directory as required by Flask platform --- app.py => site/app.py | 0 {static => site/static}/favicon.svg | 0 {static => site/static}/logo.svg | 0 {static => site/static}/style.css | 0 {templates => site/templates}/index.html | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename app.py => site/app.py (100%) rename {static => site/static}/favicon.svg (100%) rename {static => site/static}/logo.svg (100%) rename {static => site/static}/style.css (100%) rename {templates => site/templates}/index.html (100%) diff --git a/app.py b/site/app.py similarity index 100% rename from app.py rename to site/app.py diff --git a/static/favicon.svg b/site/static/favicon.svg similarity index 100% rename from static/favicon.svg rename to site/static/favicon.svg diff --git a/static/logo.svg b/site/static/logo.svg similarity index 100% rename from static/logo.svg rename to site/static/logo.svg diff --git a/static/style.css b/site/static/style.css similarity index 100% rename from static/style.css rename to site/static/style.css diff --git a/templates/index.html b/site/templates/index.html similarity index 100% rename from templates/index.html rename to site/templates/index.html