The future of Linux distributions
- Sandbox auto-detects podman/docker and handles sudo requirement - Podman needs sudo for mkarchiso (loop devices, chroot) - Docker runs privileged via daemon (no sudo needed) - Test profile updated for UEFI-only boot (modern approach) - Build VM (debate-builder) successfully produced 432MB ISO Architecture: - Dev LXC: FastAPI, PostgreSQL, code - Build VM: Podman + archiso for ISO generation - SSH triggers builds remotely Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .planning | ||
| backend | ||
| docs | ||
| scripts | ||
| tests | ||
| .env.example | ||
| .gitignore | ||
| Caddyfile | ||
| docker-compose.yml | ||
| pyproject.toml | ||
| README.md | ||
| uv.lock | ||
Debate Backend
Backend API for the Debate Linux distribution builder platform.
Development
# Create virtual environment
uv venv
# Activate
source .venv/bin/activate
# Install dependencies
uv pip install -e ".[dev]"
# Run development server
uvicorn backend.app.main:app --reload