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

Settings

Workspace

Re-discover repos in the workspace directory. Use after cloning or removing repos.

Excluded repos

{% if state and state.excluded %} {% for name in state.excluded %} {% endfor %}
Repo
{{ name }}
{% else %}

No excluded repos.

{% endif %}

Forges

{% if state and state.forges %} {% for host, info in state.forges.items() %} {% endfor %}
HostType
{{ host }}{{ info.type | default("gitlab") }}
{% else %}

No forges configured.

{% endif %}

Use project-hub configure-forge CLI to add or modify forges.

{% endblock %}