Supabase + Python Skill FastAPI patterns with Supabase Auth and SQLAlchemy/SQLModel for database access. Sources: Supabase Python Client | SQLModel --- Core Principle SQLAlchemy/SQLModel for queries, Supabase for auth/storage. Use SQLAlchemy or SQLModel for type-safe database access. Use supabase-py for auth, storage, and realtime. FastAPI for the API layer. --- Project Structure --- Setup Install Dependencies pyproject.toml Environment Variables --- Configuration src/core/config.py --- Database Setup src/db/session.py src/db/models.py --- Supabase Client src/services/supabase.py --- Auth Dep…