mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- improve installer/action/controller flow and shell-variable expansion handling across screens\n- adjust Supabase Helm rendering and storage deployment templates\n- align monitoring, cloudnative-pg and repair pipeline behavior with updated config paths\n- refresh and expand installer/core regression tests around milestones, navigation and repair logic Co-authored-by: Junie <junie@jetbrains.com>
32 lines
615 B
Python
Executable File
32 lines
615 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Thin launch vehicle for the Prole installer.
|
|
"""
|
|
|
|
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 knoe.ui.screens import (
|
|
KnoeInstaller,
|
|
KnoeController,
|
|
get_resource_path,
|
|
has_display,
|
|
main,
|
|
)
|
|
|
|
__all__ = [
|
|
"KnoeInstaller",
|
|
"KnoeController",
|
|
"get_resource_path",
|
|
"has_display",
|
|
"main",
|
|
]
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|