The future of Linux distributions
Tasks completed: 2/2 - Initialize Python project with uv and dependencies - Create FastAPI application structure with health endpoint SUMMARY: .planning/phases/01-core-infrastructure-security/01-01-SUMMARY.md |
||
|---|---|---|
| .planning | ||
| backend | ||
| docs | ||
| .env.example | ||
| 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