agnes-the-ai-analyst/services/session_collector/systemd/session-collector.service
Petr f2d3d156e3 Move standalone services from server/ to services/
Extract 4 self-contained services into services/ module:
- server/telegram_bot/ -> services/telegram_bot/
- server/ws_gateway/ -> services/ws_gateway/
- server/corporate_memory/ -> services/corporate_memory/
- server/session_collector.py -> services/session_collector/

Each service now has its own systemd/ directory with .service and .timer files.
deploy.sh updated to auto-discover service units from services/*/systemd/*.

server/ now contains only deployment infrastructure (deploy.sh, setup scripts,
bin/ management tools, sudoers, nginx config).

All imports updated: webapp/app.py, server/bin/ scripts, systemd ExecStart paths.
2026-03-09 12:54:30 +01:00

22 lines
472 B
Desktop File

[Unit]
Description=Session Transcript Collector
After=network-online.target
Wants=network-online.target
[Service]
Type=oneshot
User=root
Group=data-ops
WorkingDirectory=/opt/data-analyst/repo
ExecStart=/usr/local/bin/collect-sessions
# Security hardening - root needed to read /home/*/user/sessions/
ProtectSystem=strict
ReadWritePaths=/data/user_sessions
PrivateTmp=true
# Timeout for long-running collections
TimeoutStartSec=600
[Install]
WantedBy=multi-user.target