- Updated the terminology from "components" to "programs" across the codebase, including in config loading, saving, and manifest specifications. - Introduced a new `stacks.py` file to handle lifecycle actions for development stacks, implementing handlers for Python and React Vite stacks. - Adjusted tests to reflect the new program structure and ensure proper functionality. - Revised documentation to align with the new terminology and structure, ensuring clarity on the purpose and configuration of programs, services, and jobs.
34 lines
660 B
Python
34 lines
660 B
Python
"""Re-export from castle-core for backward compatibility."""
|
|
|
|
from castle_core.manifest import * # noqa: F401, F403
|
|
from castle_core.manifest import ( # noqa: F401 — explicit re-exports for type checkers
|
|
BuildSpec,
|
|
CaddySpec,
|
|
Capability,
|
|
ProgramSpec,
|
|
DefaultsSpec,
|
|
EnvMap,
|
|
ExposeSpec,
|
|
HttpExposeSpec,
|
|
HttpInternal,
|
|
HttpPublic,
|
|
InstallSpec,
|
|
JobSpec,
|
|
ManageSpec,
|
|
PathInstallSpec,
|
|
ProxySpec,
|
|
ReadinessHttpGet,
|
|
RestartPolicy,
|
|
RunBase,
|
|
RunCommand,
|
|
RunContainer,
|
|
RunNode,
|
|
RunPython,
|
|
RunRemote,
|
|
RunSpec,
|
|
ServiceSpec,
|
|
SystemdSpec,
|
|
TLSMode,
|
|
ToolSpec,
|
|
)
|