The future of Linux distributions
Find a file
Mikkel Georgsen 70003ef892 docs(01): update verification for container-based builds
- Changed sandbox from systemd-nspawn to Podman/Docker
- Verified: container image builds, mkarchiso available
- 5/6 truths verified (only E2E ISO build outstanding)
- Added decision: Podman/Docker for cross-platform support

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 20:42:41 +00:00
.planning docs(01): update verification for container-based builds 2026-01-25 20:42:41 +00:00
backend fix(01-05): use container-based builds instead of systemd-nspawn 2026-01-25 20:41:36 +00:00
docs Upload files to "docs" 2026-01-25 01:32:49 +00:00
scripts fix(01-05): use container-based builds instead of systemd-nspawn 2026-01-25 20:41:36 +00:00
tests feat(01-05): add deterministic build configuration service 2026-01-25 20:20:11 +00:00
.env.example feat(01-02): set up PostgreSQL with Docker and async session factory 2026-01-25 20:10:18 +00:00
.gitignore feat(01-04): create PostgreSQL backup script with 30-day retention 2026-01-25 20:19:17 +00:00
Caddyfile feat(01-04): configure Caddy reverse proxy with HTTPS 2026-01-25 20:18:02 +00:00
docker-compose.yml feat(01-04): configure Caddy reverse proxy with HTTPS 2026-01-25 20:18:02 +00:00
pyproject.toml feat(01-01): initialize Python project with uv and dependencies 2026-01-25 20:08:14 +00:00
README.md feat(01-01): initialize Python project with uv and dependencies 2026-01-25 20:08:14 +00:00

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