Problem Swagger를 추가해서 Django API 문서를 만들어보자 FBV(Function Based View) 환경에서 진행한다. FBV 환경에서 진행하는 문서가 부족해 작성하게 되었다. Solution 1. drf-yasg와 djangorestframework를 설치한다. pip install drf_yasg pip install djangorestframework 2. 설치 후 url.py에서 schema_url_patterns를 설정하고, get_schema_view를 정의한다. schema_url_patterns = [ path('루트URL/', include('app.url')), ] schema_view_v1 = get_schema_view( openapi.Info( title="O..