Skip to Content
CubyInstallation

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 | bash

Windows (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 -- -c

Windows (PowerShell)

& ([scriptblock]::Create((irm https://marketplace.processcube.io/cuby/install.ps1))) -InstallDir 'C:\Tools' -NoBrowser

Installationsprozess

Das Installationsskript führt automatisch folgende Schritte aus:

  1. Erkennung — Betriebssystem und Architektur werden ermittelt
  2. Version — Aktuelle Version wird vom Marketplace abgerufen
  3. Download — Passende Binary wird heruntergeladen
  4. Verifizierung — Binary wird auf Ausführbarkeit geprüft
  5. Installation — Binary wird ins Zielverzeichnis kopiert
  6. PATH — (nur Windows) Installationsverzeichnis wird zum PATH hinzugefügt

Standard-Installationspfade

PlattformPfad
macOS / Linux/usr/local/bin/cuby
WindowsC:\Users\<user>\AppData\Local\Programs\Cuby\cuby.exe

Manueller Download

Binaries können direkt von den GitHub Releases  heruntergeladen werden:

PlattformDatei
Linux x64cuby-linux-x64
macOS ARM64 (Apple Silicon)cuby-macos-arm64
macOS x64 (Intel)cuby-macos-x64
Windows x64cuby-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/cuby

Systemvoraussetzungen

  • 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

cuby

Beim ersten Start öffnet sich automatisch der Setup-Wizard im Browser unter http://localhost:3847.

Kommandozeilen-Optionen

OptionBeschreibung
--version, -vVersion anzeigen
--no-browser, -nBrowser 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 ~/.processcube

Windows

Remove-Item "$env:LOCALAPPDATA\Programs\Cuby" -Recurse -Force Remove-Item "$env:USERPROFILE\.processcube" -Recurse -Force

Nächste Schritte

Nach der Installation führt der Setup-Wizard durch die Ersteinrichtung.