{% extends "base.html" %} {% block content %}

Schedule

{% if not is_supported %}

Scheduling not supported on this platform

lit-monitor schedules recurring discovery runs via launchd (macOS) or systemd user timers (Linux). Your platform: {{ platform }}.

You can still run lit-monitor run manually from the dashboard.

{% else %}

Platform: {{ platform }}

Current schedule

{% if current %}
Day of week
{{ current.day_of_week }}
Time
{{ current.time }}
{% else %}

No schedule installed yet — create one below to run discovery on a cadence.

{% endif %}

{% if current %}Replace{% else %}Create{% endif %} schedule

{% endif %}

Recent discovery runs (last 10)

{% if recent_runs %} {% for run in recent_runs %} {% endfor %}
StartedStatusProcessedFailed
{{ run.started_at }} {{ run.status or "—" }} {{ run.papers_processed or 0 }} {{ run.papers_failed or 0 }}
{% else %}

No discovery runs in the log yet — runs appear here once discovery completes.

{% endif %}
{% endblock %}