Installation
Cuby wird als Single-Binary ausgeliefert und benötigt keine zusätzlichen Abhängigkeiten. Die Installation erfolgt über ein Skript oder als manueller Download.
Schnellinstallation
macOS / Linux
curl -fsSL https://marketplace.processcube.io/cuby/install | bashWindows (PowerShell)
powershell -c "irm https://marketplace.processcube.io/cuby/install.ps1 | iex"Optionale Parameter
macOS / Linux
# Benutzerdefiniertes Installationsverzeichnis
curl -fsSL https://marketplace.processcube.io/cuby/install | bash -s -- -d /custom/path
# Ohne Browser-Öffnung nach Installation
curl -fsSL https://marketplace.processcube.io/cuby/install | bash -s -- -n
# Nur Version prüfen (kein Update)
curl -fsSL https://marketplace.processcube.io/cuby/install | bash -s -- -cWindows (PowerShell)
& ([scriptblock]::Create((irm https://marketplace.processcube.io/cuby/install.ps1))) -InstallDir 'C:\Tools' -NoBrowserInstallationsprozess
Das Installationsskript führt automatisch folgende Schritte aus:
- Erkennung — Betriebssystem und Architektur werden ermittelt
- Version — Aktuelle Version wird vom Marketplace abgerufen
- Download — Passende Binary wird heruntergeladen
- Verifizierung — Binary wird auf Ausführbarkeit geprüft
- Installation — Binary wird ins Zielverzeichnis kopiert
- PATH — (nur Windows) Installationsverzeichnis wird zum PATH hinzugefügt
Standard-Installationspfade
| Plattform | Pfad |
|---|---|
| macOS / Linux | /usr/local/bin/cuby |
| Windows | C:\Users\<user>\AppData\Local\Programs\Cuby\cuby.exe |
Manueller Download
Binaries können direkt von den GitHub Releases heruntergeladen werden:
| Plattform | Datei |
|---|---|
| Linux x64 | cuby-linux-x64 |
| macOS ARM64 (Apple Silicon) | cuby-macos-arm64 |
| macOS x64 (Intel) | cuby-macos-x64 |
| Windows x64 | cuby-win-x64.exe |
Nach dem Download die Binary ausführbar machen (macOS/Linux):
chmod +x cuby-macos-arm64
sudo mv cuby-macos-arm64 /usr/local/bin/cubySystemvoraussetzungen
- Betriebssystem: Windows 10+, macOS 10.13+ oder Linux x64
- Netzwerk: Internetzugang für Marketplace und Paket-Downloads
- Port: Port 3847 muss verfügbar sein (Standard-Port für Cuby)
Cuby starten
cubyBeim ersten Start öffnet sich automatisch der Setup-Wizard im Browser
unter http://localhost:3847.
Kommandozeilen-Optionen
| Option | Beschreibung |
|---|---|
--version, -v | Version anzeigen |
--no-browser, -n | Browser nicht automatisch öffnen |
Kubernetes-Installation
Für den Betrieb in einem Kubernetes-Cluster steht ein Manifest-Generator zur Verfügung:
marketplace.processcube.io/cuby/manifest
Der Generator erstellt ein angepasstes Kubernetes-Manifest mit:
- Namespace
- Hostname
- Ingress-Typ (Traefik oder Nginx)
- Cert-Manager Cluster Issuer
- API Key (wird nur für die Secret-Generierung verwendet)
Details zum Kubernetes-Betrieb unter Kubernetes Operator.
Deinstallation
macOS / Linux
sudo rm /usr/local/bin/cuby
rm -rf ~/.processcubeWindows
Remove-Item "$env:LOCALAPPDATA\Programs\Cuby" -Recurse -Force
Remove-Item "$env:USERPROFILE\.processcube" -Recurse -ForceNächste Schritte
Nach der Installation führt der Setup-Wizard durch die Ersteinrichtung.