Move plugins to manifest, pin Docker version, add Makefile

- Add plugins.txt listing all plugins for reproducible installs
- Add Makefile with setup/start/stop/install-plugins targets
- Remove user/plugins/ from git tracking
- Pin Docker image to 1.7.49.5-ls244

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-19 00:55:59 +02:00
parent 8f9ac9ca6e
commit 4f52d4d085
2738 changed files with 0 additions and 472444 deletions
@@ -1,50 +0,0 @@
{% extends 'partials/base.html.twig' %}
{% set tools_slug = uri.basename %}
{% if tools_slug == 'tools' %}{% set tools_slug = 'backups' %}{% endif %}
{% set title = "PLUGIN_ADMIN.TOOLS"|t ~ ": " ~ ("PLUGIN_ADMIN." ~ tools_slug|underscorize|upper)|t %}
{% set tools = admin.tools() %}
{% set titlebar -%}
{% include 'partials/tools-' ~ tools_slug ~ '-titlebar.html.twig' ignore missing %}
{%- endset %}
{% block titlebar %}
{% if titlebar %}
{{ titlebar }}
{% else %}
<div class="button-bar">
<a class="button" href="{{ base_url }}"><i class="fa fa-reply"></i> {{ "PLUGIN_ADMIN.BACK"|t }}</a>
</div>
<h1><i class="fa fa-fw fa-briefcase"></i> {{ "PLUGIN_ADMIN.TOOLS"|t }} - {{ ("PLUGIN_ADMIN." ~ tools_slug|underscorize|upper)|t }}</h1>
{% endif %}
{% endblock %}
{% block content_top %}
{% if tools|length > 1 %}
<div class="form-tabs">
<div class="tabs-nav">
{% for slug,tool in tools %}
{% set perms = tool|first %}
{% set name = tool|last %}
{% if authorize(perms) %}
<a href="{{ admin_route('/tools/' ~ slug|hyphenize) }}" {% if tools_slug == slug|hyphenize %}class="active"{% endif %}>
{{ name|t|capitalize }}
</a>
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{% endblock %}
{% block content %}
{% set perms = tools[tools_slug]|first %}
{% if authorize(perms) %}
{% include 'partials/tools-' ~ tools_slug ~ '.html.twig' ignore missing %}
{% else %}
<h1>Unauthorized</h1>
{% endif %}
{% endblock %}