prole/knoe/__init__.py
chrisfu 4ee2b259c9 Checkpoint: rename installer to knoe + harden db build context
- 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>
2026-03-22 01:45:21 -07:00

31 lines
842 B
Python

"""
Root-level Installer package for Prole.
This package contains the refactored modules extracted from the legacy
monolithic `install.py`.
Modules:
- config: shared paths, dependency catalog, platform helpers, version utils.
- build: Prole app build command composition.
- deploy: host-side deploy helpers (Xcode tools check, app build flow).
- milestone: installer milestone abstraction.
- state: installer state model.
- runner: milestone runner with event callbacks.
- core: UI-agnostic installer core wrapper.
- screen: (optional) UI controller placement point.
The entry point remains at `prole/install.py` and the legacy root `install.py`
continues to work, but now delegates to `installer.*` modules.
"""
__all__ = [
"config",
"build",
"deploy",
"milestone",
"state",
"runner",
"core",
"screen",
]