From 976e59b496d2879183c9a66f66d4cf84d309610e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Tue, 14 Jul 2026 22:24:24 +0400 Subject: [PATCH] =?UTF-8?q?Step=200:=20rename=20site/=20=E2=86=92=20app/?= =?UTF-8?q?=20(Python=20stdlib=20conflict=20fix)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- {site => app}/app.py | 0 {site => app}/services/drhider.py | 0 {site => app}/services/llm_client.py | 0 {site => app}/static/app.js | 0 {site => app}/static/app_utils.js | 0 {site => app}/static/compare.js | 0 {site => app}/static/favicon.svg | 0 {site => app}/static/files.js | 0 {site => app}/static/groups.js | 0 {site => app}/static/logo.svg | 0 {site => app}/static/state.js | 0 {site => app}/templates/architect.html | 0 {site => app}/templates/architecture-diagram.html | 0 {site => app}/templates/ci-cd.html | 0 {site => app}/templates/drhider.html | 0 {site => app}/templates/index.html | 0 {site => app}/templates/pipeline.html | 0 18 files changed, 2 insertions(+), 2 deletions(-) rename {site => app}/app.py (100%) rename {site => app}/services/drhider.py (100%) rename {site => app}/services/llm_client.py (100%) rename {site => app}/static/app.js (100%) rename {site => app}/static/app_utils.js (100%) rename {site => app}/static/compare.js (100%) rename {site => app}/static/favicon.svg (100%) rename {site => app}/static/files.js (100%) rename {site => app}/static/groups.js (100%) rename {site => app}/static/logo.svg (100%) rename {site => app}/static/state.js (100%) rename {site => app}/templates/architect.html (100%) rename {site => app}/templates/architecture-diagram.html (100%) rename {site => app}/templates/ci-cd.html (100%) rename {site => app}/templates/drhider.html (100%) rename {site => app}/templates/index.html (100%) rename {site => app}/templates/pipeline.html (100%) diff --git a/Dockerfile b/Dockerfile index 174e281..32a4581 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY site /app/site +COPY app /app/app EXPOSE 5000 -CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "site.app:app"] +CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "app.app:app"] diff --git a/site/app.py b/app/app.py similarity index 100% rename from site/app.py rename to app/app.py diff --git a/site/services/drhider.py b/app/services/drhider.py similarity index 100% rename from site/services/drhider.py rename to app/services/drhider.py diff --git a/site/services/llm_client.py b/app/services/llm_client.py similarity index 100% rename from site/services/llm_client.py rename to app/services/llm_client.py diff --git a/site/static/app.js b/app/static/app.js similarity index 100% rename from site/static/app.js rename to app/static/app.js diff --git a/site/static/app_utils.js b/app/static/app_utils.js similarity index 100% rename from site/static/app_utils.js rename to app/static/app_utils.js diff --git a/site/static/compare.js b/app/static/compare.js similarity index 100% rename from site/static/compare.js rename to app/static/compare.js diff --git a/site/static/favicon.svg b/app/static/favicon.svg similarity index 100% rename from site/static/favicon.svg rename to app/static/favicon.svg diff --git a/site/static/files.js b/app/static/files.js similarity index 100% rename from site/static/files.js rename to app/static/files.js diff --git a/site/static/groups.js b/app/static/groups.js similarity index 100% rename from site/static/groups.js rename to app/static/groups.js diff --git a/site/static/logo.svg b/app/static/logo.svg similarity index 100% rename from site/static/logo.svg rename to app/static/logo.svg diff --git a/site/static/state.js b/app/static/state.js similarity index 100% rename from site/static/state.js rename to app/static/state.js diff --git a/site/templates/architect.html b/app/templates/architect.html similarity index 100% rename from site/templates/architect.html rename to app/templates/architect.html diff --git a/site/templates/architecture-diagram.html b/app/templates/architecture-diagram.html similarity index 100% rename from site/templates/architecture-diagram.html rename to app/templates/architecture-diagram.html diff --git a/site/templates/ci-cd.html b/app/templates/ci-cd.html similarity index 100% rename from site/templates/ci-cd.html rename to app/templates/ci-cd.html diff --git a/site/templates/drhider.html b/app/templates/drhider.html similarity index 100% rename from site/templates/drhider.html rename to app/templates/drhider.html diff --git a/site/templates/index.html b/app/templates/index.html similarity index 100% rename from site/templates/index.html rename to app/templates/index.html diff --git a/site/templates/pipeline.html b/app/templates/pipeline.html similarity index 100% rename from site/templates/pipeline.html rename to app/templates/pipeline.html