Files
govoplan/tools/deployment/govoplan-deploy.py
Albrecht Degering 82e836b720
Some checks are pending
Dependency Audit / dependency-audit (push) Waiting to run
Deployment Installer / deployment-installer (push) Waiting to run
Security Audit / security-audit (push) Waiting to run
feat(deploy): add declarative installation workflow
2026-07-30 15:36:37 +02:00

19 lines
368 B
Python

#!/usr/bin/env python3
"""GovOPlaN deployment entry point."""
from __future__ import annotations
from pathlib import Path
import sys
TOOLS_ROOT = Path(__file__).resolve().parent
if str(TOOLS_ROOT) not in sys.path:
sys.path.insert(0, str(TOOLS_ROOT))
from govoplan_deploy.cli import main # noqa: E402
if __name__ == "__main__":
raise SystemExit(main())