diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a69e5d3..0000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM python:3.12-slim - -WORKDIR /app - -# Зависимости -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - -# Код -COPY . . - -# Порт -EXPOSE 5000 - -# Запуск -CMD ["python", "app.py"] diff --git a/app.py b/site/app.py similarity index 100% rename from app.py rename to site/app.py diff --git a/config.py b/site/config.py similarity index 100% rename from config.py rename to site/config.py diff --git a/routes/__init__.py b/site/routes/__init__.py similarity index 100% rename from routes/__init__.py rename to site/routes/__init__.py diff --git a/routes/api.py b/site/routes/api.py similarity index 100% rename from routes/api.py rename to site/routes/api.py diff --git a/routes/pages.py b/site/routes/pages.py similarity index 100% rename from routes/pages.py rename to site/routes/pages.py diff --git a/services/__init__.py b/site/services/__init__.py similarity index 100% rename from services/__init__.py rename to site/services/__init__.py diff --git a/services/llm.py b/site/services/llm.py similarity index 100% rename from services/llm.py rename to site/services/llm.py diff --git a/services/whisper.py b/site/services/whisper.py similarity index 100% rename from services/whisper.py rename to site/services/whisper.py diff --git a/static/favicon.png b/site/static/favicon.png similarity index 100% rename from static/favicon.png rename to site/static/favicon.png diff --git a/static/nubes-logo.svg b/site/static/nubes-logo.svg similarity index 100% rename from static/nubes-logo.svg rename to site/static/nubes-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