SPB Git

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%
298 B · 15 lines shellscript
Raw Blame History
1#!/usr/bin/env bash2# Trouve-KA — démarrage local d'un worker de crawl3# Author: Simon-Pierre Boucher4# Contact: contact@spboucher.ai5set -euo pipefail6cd "$(dirname "$0")/../.."78if [ -x .venv/bin/python ]; then9  PY=.venv/bin/python10else11  PY=python312fi1314exec "$PY" -m trouveka.crawler.worker15