revert: app/ → site/ (drhider proves site/ works fine)

This commit is contained in:
2026-07-14 22:56:19 +04:00
parent 38547404f5
commit 96718fc065
42 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app /app/app
COPY site /app/site
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "app.app:app"]
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--timeout", "300", "--workers", "1", "site.app:app"]