fix: add missing cached field to error fallback SearchResponse

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-23 18:14:57 +11:00
co-authored by Copilot
parent df8bd7fa7d
commit b9917f0a4e
3 changed files with 1 additions and 4 deletions
-4
View File
@@ -24,10 +24,6 @@ COPY backend/ .
# Copy frontend build output to static dir
COPY --from=frontend-build /app/frontend/dist /app/static
# Redis is optional — set REDIS_URL to enable caching
# e.g. docker run -e REDIS_URL=redis://redis:6379 ...
ENV REDIS_URL=""
EXPOSE 8000
CMD ["uv", "run", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]