- 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
424 B
Desktop File
12 lines
424 B
Desktop File
# Install: sudo cp ops/auto-deploy.service /etc/systemd/system/teleo-auto-deploy.service
|
|
# Then: sudo systemctl daemon-reload && sudo systemctl enable --now teleo-auto-deploy.timer
|
|
[Unit]
|
|
Description=Auto-deploy teleo-codex from Forgejo to working directories
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
User=teleo
|
|
ExecStart=/opt/teleo-eval/workspaces/deploy/ops/auto-deploy.sh
|
|
StandardOutput=journal
|
|
StandardError=journal
|