mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-15 11:24:41 +02:00
feat(hermes-auto-improve): passe quotidienne complète à 22h (tous les docs)
- Ajout systemd timer hermes-auto-improve-daily.timer (22h00, Persistent=true) - Service oneshot : --all puis --daily-pr (TimeoutSec=7200 pour 28 fichiers) - auto-improve.py : flag --all qui bypass MAX_FILES et traite tout admin/ - trigger-server.py : timeout 600s → 7200s pour les runs --all via HTTP La rotation par batch (MAX_FILES=5) reste active pour les triggers n8n à la demande. Le workflow n8n 30-min doit être désactivé manuellement. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
3780c90804
commit
7d02efd9fa
6 changed files with 60 additions and 7 deletions
|
|
@ -47,3 +47,24 @@
|
|||
state: started
|
||||
daemon_reload: true
|
||||
|
||||
- name: Deploy daily service (oneshot — analyse complète)
|
||||
ansible.builtin.template:
|
||||
src: hermes-auto-improve-daily.service.j2
|
||||
dest: /etc/systemd/system/hermes-auto-improve-daily.service
|
||||
mode: '0644'
|
||||
notify: Reload systemd daemon
|
||||
|
||||
- name: Deploy daily timer (22h00)
|
||||
ansible.builtin.template:
|
||||
src: hermes-auto-improve-daily.timer.j2
|
||||
dest: /etc/systemd/system/hermes-auto-improve-daily.timer
|
||||
mode: '0644'
|
||||
notify: Reload systemd daemon
|
||||
|
||||
- name: Enable and start daily timer
|
||||
ansible.builtin.systemd:
|
||||
name: hermes-auto-improve-daily.timer
|
||||
enabled: true
|
||||
state: started
|
||||
daemon_reload: true
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue