{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Operations Runbooks - Gvelo Enterprise Platform{% endblock %} {% block body_class %}operational-page ops-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Operations Runbooks

Professional procedures for onboarding, recovery, deployment, migration, incidents, and support.
{% for runbook in snapshot.runbooks %}

{{ runbook.title }}

{% for step in runbook.steps %}
{{ loop.index }}. {{ step }}
{% endfor %}
{% endfor %}
{% endblock %}