spb/trouve-ka Public
Trouve-KA — moteur de recherche web indépendant, Québec-first. Crawler distribué, index OpenSearch, ranking bilingue, galerie d'images. En prod : www.trouve-ka.com
Python 76.8%
TypeScript 15.7%
SQL 3.9%
Shell 1.4%
CSS 1.3%
Dockerfile 0.7%
1# Trouve-KA — image backend Python (API, crawler, enrichissement, scheduler)2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai45FROM python:3.12-slim67WORKDIR /app89COPY pyproject.toml ./10COPY packages ./packages11COPY services ./services12COPY apps/api ./apps/api13COPY infrastructure/migrations ./infrastructure/migrations14COPY scripts ./scripts1516RUN pip install --no-cache-dir .1718ENV PYTHONUNBUFFERED=11920CMD ["uvicorn", "trouveka.api.main:app", "--host", "0.0.0.0", "--port", "8080"]21