debate/backend/app/services/__init__.py
Mikkel Georgsen cd94d99c62 feat(01-05): add systemd-nspawn sandbox for isolated ISO builds
- Create scripts/setup-sandbox.sh to bootstrap Arch base environment
- Add BuildSandbox class for container management and build execution
- Configure sandbox with network isolation, read-only root, 8GB/4core limits
- Add sandbox_root and iso_output_root settings to config
2026-01-25 20:19:02 +00:00

5 lines
158 B
Python

"""Services package for business logic."""
from backend.app.services.sandbox import BuildSandbox, SandboxConfig
__all__ = ["BuildSandbox", "SandboxConfig"]