fix timeout

This commit is contained in:
Ugric
2026-01-30 05:45:27 +00:00
parent 8e69e293d0
commit 28402ecb31
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
COPY . /app COPY . /app
ENTRYPOINT ["gunicorn"] ENTRYPOINT ["gunicorn"]
CMD ["--bind","0.0.0.0:8000","main:app"] CMD ["--bind","0.0.0.0:8000","main:app", " --timeout","120"]
FROM builder as dev-envs FROM builder as dev-envs

View File

@@ -23,7 +23,7 @@ body::before {
width: 200vw; width: 200vw;
height: 200vh; height: 200vh;
background: radial-gradient(circle at 50% 0%, var(--accent) 0%, var(--background) 70%); background: radial-gradient(circle at 50% 0%, var(--accent) 0%, var(--background) 70%);
animation: moveLight 30s ease-in-out infinite alternate; animation: moveLight 10s ease-in-out infinite alternate;
z-index: -1; z-index: -1;
} }