The future of Linux distributions
- Add pyproject.toml with FastAPI, SQLAlchemy, Pydantic dependencies - Configure ruff linter with Python 3.12 target - Create .env.example with documented environment variables - Add README.md with development setup instructions |
||
|---|---|---|
| .planning | ||
| docs | ||
| .env.example | ||
| 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