Skip to content

Latest commit

 

History

History
117 lines (83 loc) · 4.31 KB

File metadata and controls

117 lines (83 loc) · 4.31 KB

Contributing to bootc-installer

bootc-installer is a GTK4/Libadwaita Flatpak installer for bootc container-native OS images. It ships three desktop-environment variants (GNOME, XFCE, KDE) from a single Python codebase, backed by the fisherman Go install backend.

Getting started

git clone --recurse-submodules https://github.com/projectbluefin/bootc-installer
cd bootc-installer

Important: fisherman is a git submodule. Always clone with --recurse-submodules, or run git submodule update --init --recursive after a plain clone. Without this, fisherman/ is empty and all build paths fail immediately.

Prerequisites

  • flatpak + org.flatpak.Builder — for the recommended Flatpak build
  • meson, ninja — for native (non-Flatpak) builds
  • Go ≥ 1.22 — for fisherman (the install backend, in the submodule)
  • Python ≥ 3.10 — for the GUI codebase
  • libadwaita-1-dev, gettext, desktop-file-utils, libgnome-desktop-4-dev

Building

Flatpak (recommended)

git submodule update --init --recursive   # Required — fisherman is a submodule
flatpak run org.flatpak.Builder --force-clean --user --install _build flatpak/org.bootcinstaller.Installer.json
flatpak run org.bootcinstaller.Installer

Meson (development)

git submodule update --init --recursive   # Required — fisherman is a submodule
meson setup build
ninja -C build
sudo ninja -C build install
bootc-installer

Dev loop

./run-dev.sh                               # Rebuild and launch with BOOTC_DEMO=1 (no disk writes)
BOOTC_PREVIEW_SCREEN=confirm ./run-dev.sh  # Jump to a specific screen

Running tests

pytest tests/unit/ -q                           # Unit tests (no display required)
xvfb-run -a pytest tests/ui/ -q                 # UI tests
python3 -m ruff check bootc_installer/ tests/   # Lint
./QUALIFY_SOFTWARE.sh                           # Full qualification suite

CI gate: --cov-fail-under=47 (minimum unit test coverage).

Branch workflow

  • Default branch: dev
  • Open all PRs against dev — do not target main
  • Follow Conventional Commits for commit messages
  • PR title format: feat:, fix:, docs:, chore:, ci:

Adding images to the catalog

The image catalog lives in fisherman/data/images.json. See the README for the full JSON schema.

fisherman/ is a git submodule pointing to projectbluefin/fisherman. Changes to the catalog must be committed and pushed separately to the fisherman repo, then the submodule pointer updated here.

Variants

Variant Flatpak ID Entry point
GNOME (default) org.bootcinstaller.Installer GTK4/Libadwaita
XFCE org.xfceinstaller.Installer GTK4
KDE org.kdeinstaller.Installer Qt/Kirigami

Install commands for each variant:

# GNOME
curl -Lo installer.flatpak \
  https://github.com/projectbluefin/bootc-installer/releases/download/latest-stable/org.bootcinstaller.Installer.flatpak \
  && sudo flatpak install --bundle -y installer.flatpak

# XFCE
curl -Lo installer.flatpak \
  https://github.com/projectbluefin/bootc-installer/releases/download/latest-stable/org.xfceinstaller.Installer.flatpak \
  && sudo flatpak install --bundle -y installer.flatpak

# KDE
curl -Lo installer.flatpak \
  https://github.com/projectbluefin/bootc-installer/releases/download/latest-stable/org.kdeinstaller.Installer.flatpak \
  && sudo flatpak install --bundle -y installer.flatpak

Architecture overview

Component Language Role
fisherman/fisherman/ Go Root-level CLI; reads JSON recipe, executes 9-step disk install pipeline
bootc_installer/ Python Multi-variant GUI; collects user choices, writes recipe JSON, drives fisherman

See CLAUDE.md and AGENTS.md for deeper architecture documentation.

Code style

  • Python: Ruff (python3 -m ruff check)
  • Go: gofmt + go vet
  • Commit messages: Conventional Commits

Security

Report vulnerabilities via GitHub Private Vulnerability Reporting. Do not open public issues for security bugs.