prole/install.py
chrisfu 6b89ea23d7 Stabilize deliverable k3d pipeline and refactor installer components
- Finalized stable, repeatable reset logic for the k3d pipeline.

- Refactored installer into modular components: core, milestone, runner, and state.

- Introduced new UI abstractions with support for ncurses and Tkinter.

- Updated initialization scripts and configurations for CloudNativePG, Kerberos, OpenBao, and Monitoring.

- Improved pipeline repair and port-forwarding mechanisms.
2026-02-15 00:03:24 -08:00

34 lines
703 B
Python
Executable File

#!/usr/bin/env python3
"""
Thin launch vehicle for the Prole installer.
Keeps legacy UI available while exposing a stable import surface for tests.
"""
from __future__ import annotations
# Keep these imports for backward-compatibility with tests that patch them.
import tkinter as tk # noqa: F401
from tkinter import ttk, scrolledtext, messagebox, filedialog # noqa: F401
from pathlib import Path # noqa: F401
from installer.ui.legacy_tk import (
ProleInstaller,
ProleController,
get_resource_path,
has_display,
main,
)
__all__ = [
"ProleInstaller",
"ProleController",
"get_resource_path",
"has_display",
"main",
]
if __name__ == '__main__':
main()