- AGENT-SOP.md: enforceable checklist for commit/review/deploy cycle - auto-deploy.sh + systemd units: 2-min timer pulls from Forgejo, syncs to working dirs, restarts services only when Python changes, smoke tests - prune-branches.sh: dry-run-by-default branch cleanup tool - Delete root diagnostics/ (stale artifacts, all code moved to ops/) - Delete 7 orphaned HTML prototypes (untracked, local-only) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
327 B
SYSTEMD
12 lines
327 B
SYSTEMD
# Install: sudo cp ops/auto-deploy.timer /etc/systemd/system/teleo-auto-deploy.timer
|
|
# Then: sudo systemctl daemon-reload && sudo systemctl enable --now teleo-auto-deploy.timer
|
|
[Unit]
|
|
Description=Run teleo auto-deploy every 2 minutes
|
|
|
|
[Timer]
|
|
OnBootSec=30
|
|
OnUnitActiveSec=2min
|
|
AccuracySec=10s
|
|
|
|
[Install]
|
|
WantedBy=timers.target
|