KI-AGENT: Selfhost-Script als Codeblock eingebaut

This commit is contained in:
2026-05-19 22:32:21 +02:00
parent bcde1da84f
commit 98c95483d8
3 changed files with 98 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
<nav aria-label="Hauptnavigation">
<NuxtLink to="/#funktionen">Funktionen</NuxtLink>
<NuxtLink to="/#open-source">Open Source</NuxtLink>
<NuxtLink to="/#selfhost">Selfhost</NuxtLink>
<NuxtLink to="/#kontakt">Kontakt</NuxtLink>
<a class="login-link" href="https://app.fedeo.de">Einloggen</a>
</nav>

View File

@@ -8,6 +8,7 @@
<nav aria-label="Hauptnavigation">
<a href="#funktionen">Funktionen</a>
<a href="#open-source">Open Source</a>
<a href="#selfhost">Selfhost</a>
<a href="#kontakt">Kontakt</a>
<a class="login-link" href="https://app.fedeo.de">Einloggen</a>
</nav>
@@ -130,6 +131,26 @@
<a class="secondary-action" href="https://git.federspiel.tech/flfeders/FEDEO">Repository ansehen</a>
</section>
<section id="selfhost" class="script-section">
<div>
<p class="eyebrow">Selfhosting</p>
<h2>FEDEO auf deinem Server starten.</h2>
<p>
Der Installer prüft die Basisumgebung, richtet Docker bei Bedarf ein, lädt FEDEO und startet danach den geführten Selfhost-Assistenten.
</p>
</div>
<div class="code-window" aria-label="FEDEO Selfhost Installationsbefehl">
<div class="code-window-toolbar">
<span></span>
<span></span>
<span></span>
<strong>Terminal</strong>
</div>
<pre><code>{{ installCommand }}</code></pre>
</div>
</section>
<section id="kontakt" class="contact-section">
<div>
<p class="eyebrow">Jetzt anfragen</p>
@@ -196,4 +217,6 @@ const features = [
description: 'FEDEO ist für Arbeit am Schreibtisch und für mobile Abläufe im Einsatz vorbereitet.'
}
]
const installCommand = 'curl -fsSL https://git.federspiel.tech/flfeders/FEDEO/raw/branch/dev/scripts/selfhost-install.sh | bash -s -- --simple --start'
</script>