- 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
19 lines
301 B
Markdown
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
|
|
```
|