Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 848 Bytes

File metadata and controls

21 lines (16 loc) · 848 Bytes

FastAPI Framework Guidelines

Guidelines specific to FastAPI web applications.

Files

File Description
overview.md Technology stack definition
project-structure.md Directory structure
routing.md Route design and URL conventions
api.md API design (request/response, versioning)
auth.md Authentication and authorization
database.md Database access (SQLAlchemy, Alembic)
middleware.md Middleware design

Relationship with common/

  • common/ defines language-independent rules ("what to do")
  • This directory defines FastAPI-specific patterns ("how to implement")
  • When both exist for the same topic, this directory takes priority (CSS Specificity)