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 — variables d'environnement (exemple, sans secrets)2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai45# --- Bases de données ---6DATABASE_URL=postgresql://trouveka:trouveka@localhost:5432/trouveka7REDIS_URL=redis://localhost:6379/08SEARCH_URL=http://localhost:9200910# --- Crawler ---11CRAWLER_USER_AGENT="Mozilla/5.0 (compatible; TrouveKABot/0.1; +https://www.trouve-ka.com/trouveka-bot)"12CRAWLER_CONTACT_URL=https://www.trouve-ka.com/trouveka-bot13MAX_GLOBAL_CONCURRENCY=2414MAX_PER_HOST_CONCURRENCY=215DEFAULT_HOST_DELAY=2.016MAX_RESPONSE_BYTES=300000017MAX_REDIRECTS=518FETCH_TIMEOUT=2019MAX_CRAWL_DEPTH=820MAX_LINKS_PER_PAGE=30021MAX_URLS_PER_DOMAIN=50002223# --- API ---24API_HOST=0.0.0.025API_PORT=808026ADMIN_TOKEN=change-me-admin-token2728# --- Web ---29PUBLIC_URL=https://www.trouve-ka.com30NGROK_DOMAIN=www.trouve-ka.com31API_URL=http://localhost:80803233# --- Index ---34SEARCH_INDEX=trouveka-docs35