mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- Add build-context helper to copy Docker context safely (ignore runtime data, keep symlinks) - Update UI and core actions to use ~/.prole/build and shared copy helper - Add/adjust tests and scripts; introduce knoe ops helpers and update manifests Co-authored-by: Junie <junie@jetbrains.com>
34 lines
696 B
Python
Executable File
34 lines
696 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 knoe.ui.screens import (
|
|
ProleInstaller,
|
|
ProleController,
|
|
get_resource_path,
|
|
has_display,
|
|
main,
|
|
)
|
|
|
|
__all__ = [
|
|
"ProleInstaller",
|
|
"ProleController",
|
|
"get_resource_path",
|
|
"has_display",
|
|
"main",
|
|
]
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|