API-KA — plateforme centrale : collecte quotidienne des 8 services KA, historisation append-only et API publique sur www.api-ka.com
Python 60.9%
HTML 21%
TypeScript 7.3%
JavaScript 5.2%
CSS 4.8%
Shell 0.8%
1# ============================================2# Projet : API-KA3# Fichier : systemd/apika-scheduler.service4# Node : m3u96b5# Author : Simon-Pierre Boucher6# Contact : contact@spboucher.ai7# Date : 2026-08-168# ============================================910[Unit]11Description=API-KA — Job quotidien 02:00 + backfill (APScheduler) sur m3u96b12After=network-online.target postgresql.service13Wants=network-online.target1415[Service]16Type=simple17User=simon-pierreboucher18WorkingDirectory=/opt/api-ka19EnvironmentFile=/opt/api-ka/.env20ExecStart=/opt/api-ka/venv/bin/python -m src.scheduler.daily_job21Restart=always22RestartSec=1023StandardOutput=append:/opt/api-ka/logs/apika-scheduler.service.log24StandardError=append:/opt/api-ka/logs/apika-scheduler.service.log2526[Install]27WantedBy=multi-user.target28