cleaned backend

This commit is contained in:
2025-06-22 15:56:38 +01:00
parent da447939bb
commit f3d5cb9d53
20 changed files with 5726 additions and 169 deletions

View File

@@ -19,7 +19,7 @@ COPY static static
EXPOSE 5000
# Set environment variables
ENV FLASK_APP=main.py
ENV FLASK_APP=app.py
# run the application
ENTRYPOINT [ "gunicorn", "-b", ":5000", "--access-logfile", "-", "--error-logfile", "-", "src.main:app" ]
ENTRYPOINT [ "gunicorn", "-b", ":5000", "--access-logfile", "-", "--error-logfile", "-", "src.wsgi:app" ]