# djarea Django + React server functions framework. See the [monorepo root](../README.md) for full documentation. ## Installation ```bash # From git uv add "djarea[channels,allauth] @ git+https://git.impactsoundworks.com/isw/djarea.git#subdirectory=django" # Local editable uv add -e "../../web/djarea/django[channels,allauth]" ``` ## Quick Start ```python from djarea.client import client from pydantic import BaseModel class UserOutput(BaseModel): email: str @client(context='global') def current_user(request) -> UserOutput | None: if not request.user.is_authenticated: return None return UserOutput(email=request.user.email) ```