feat(deploy): add declarative installation workflow
Some checks failed
Dependency Audit / dependency-audit (push) Has been cancelled
Deployment Installer / deployment-installer (push) Has been cancelled
Security Audit / security-audit (push) Has been cancelled

This commit is contained in:
2026-07-30 15:36:37 +02:00
parent fcb8296812
commit 82e836b720
15 changed files with 3654 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"""Declarative GovOPlaN host deployment tooling."""
from .model import (
BASE_MODULES,
FULL_MODULES,
InstallationSpec,
SpecError,
default_spec,
load_spec,
)
__all__ = [
"BASE_MODULES",
"FULL_MODULES",
"InstallationSpec",
"SpecError",
"default_spec",
"load_spec",
]