오늘 공부한 내용
- FastAPI 1~4일차 복습 및 정리
- Poetry/black/ruff/isort/mypy
- pytest/pytest_asyncio
- Coverage
- Dependency
- 자동화 테스트
- 쉘(Shell)/Shell Script(.sh)
- Github action
- spec API
- 써드 파티 라이브러리(Third-Party Library)
- uvicorn
- 직렬/역직렬
- Squids
- orjson
- Final
- Base62/64
- 디버그 모드
- EdgeDB
- Tortoise ORM
- Migration
- Aerich (실습은 fastapi-4)
- Alembic
- Tortoise ORM + conftest.py
dmypy(mypy daemon)
meeting 조회 api 스펙 생성

- from app import app 이 구문이 실행되면 → Python은 app/init.py 파일을 읽음
- 그 안에서 app이라는 이름이 정의되어 있다면
- app = FastAPI(default_response_class=ORJSONResponse)
- asgi.py에서 그걸 가져옵니다
- app.include_router(meeting_mysql_router)


