{% extends "base.html" %} {% block title %}Preflight — E2ER{% endblock %} {% block content %}

Preflight

The same checks e2er doctor runs, from the same code. A backend that is installed but not logged in is the most common reason a first paper fails several minutes in, for a reason nothing on screen explains.

{% if error %}

The preflight could not run: {{ error }}

{% else %}
{% if ready %} Ready. Nothing blocks a run on this machine. {% else %} Not ready. Fix the failures below before starting a paper — {{ blockers | join(", ") }}. {% endif %} {{ n_pass }} passed · {{ n_skip }} skipped · {{ n_fail }} failed
{% for c in checks %}
{% if c.status == "PASS" %}✓{% elif c.status == "FAIL" %}✗{% else %}·{% endif %} {{ c.name }} {{ c.detail }}
{% endfor %}

Skipped checks are optional capabilities you have not configured — a missing FRED key means no macro series, not a broken install.

{% endif %} {% endblock %}