debate/README.md
Mikkel Georgsen 300b3ddb0a feat(01-01): initialize Python project with uv and dependencies
- 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
2026-01-25 20:08:14 +00:00

19 lines
301 B
Markdown

# Debate Backend
Backend API for the Debate Linux distribution builder platform.
## Development
```bash
# 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
```