The future of Linux distributions
Phase 1 verified with: - FastAPI latency: 27ms avg (well under 200ms p95) - PostgreSQL: Running with daily backups configured - HTTPS: Caddy TLS termination working - Security: Rate limiting (100/min) and CSRF configured - Sandbox: Code complete (runtime requires Arch environment) - Deterministic builds: Unit tests pass 8 requirements satisfied: ISO-04, INFR-01 through INFR-07 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 | ||
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