88ab5b917e
Renames the Python package directory, CLI command, env var prefix, docker-compose service/container/image, Postgres role/db, and all visible branding. Marketing form is "Fabled Steward". Clean break from the previous rebrand: drops the fabledscryer→roundtable import shim in __init__.py and the FABLEDSCRYER_* env var fallback in config.py and migrations/env.py. Env vars are now STEWARD_* only. Heads-up for existing deployments: - Postgres user/db renamed fabledscryer → steward in docker-compose.yml. Existing volumes need the role/db renamed inside Postgres, or override POSTGRES_USER/POSTGRES_DB to keep the old names. - Host-agent systemd unit is now steward-agent.service. Existing agents keep running under the old name; reinstall to switch. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
20 lines
855 B
HTML
20 lines
855 B
HTML
{# steward/templates/settings/ansible.html #}
|
|
{% extends "base.html" %}
|
|
{% block title %}Settings — Ansible — Steward{% endblock %}
|
|
{% block content %}
|
|
{% set active_tab = "ansible" %}
|
|
{% include "settings/_tabs.html" %}
|
|
|
|
<div style="max-width:720px;">
|
|
<div style="display:flex;align-items:baseline;justify-content:space-between;margin-bottom:0.75rem;">
|
|
<div class="section-title">Ansible Sources</div>
|
|
<a href="/ansible/" class="btn btn-ghost btn-sm" style="font-size:0.78rem;">Run History →</a>
|
|
</div>
|
|
<p style="color:var(--text-muted);font-size:0.84rem;margin-bottom:1rem;">
|
|
Sources are directories of playbooks — either a local path or a git repository
|
|
cloned automatically. Add as many as you need; each can be browsed and run independently.
|
|
</p>
|
|
{% include "settings/_ansible_sources.html" %}
|
|
</div>
|
|
{% endblock %}
|