- 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
5 lines
158 B
Python
5 lines
158 B
Python
"""Services package for business logic."""
|
|
|
|
from backend.app.services.sandbox import BuildSandbox, SandboxConfig
|
|
|
|
__all__ = ["BuildSandbox", "SandboxConfig"]
|