The future of Linux distributions
Find a file
Mikkel Georgsen 519333e598 feat(01-01): create FastAPI application structure with health endpoint
- Add FastAPI app with title 'Debate API' v1.0.0
- Configure pydantic-settings for environment-based configuration
- Create /health endpoint at root level
- Create /api/v1/health and /api/v1/health/ready endpoints
- Disable docs/redoc in production environment
2026-01-25 20:09:21 +00:00
.planning docs(01): create phase plan 2026-01-25 19:59:49 +00:00
backend feat(01-01): create FastAPI application structure with health endpoint 2026-01-25 20:09:21 +00:00
docs Upload files to "docs" 2026-01-25 01:32:49 +00:00
.env.example feat(01-01): initialize Python project with uv and dependencies 2026-01-25 20:08:14 +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