diff --git a/app/app/settings.py b/app/app/settings.py index 1f6c3ab8f7..0afb719e10 100644 --- a/app/app/settings.py +++ b/app/app/settings.py @@ -149,6 +149,16 @@ 'DEFAULT_SCHEMA_CLASS': 'drf_spectacular.openapi.AutoSchema', } +# Updated the Swagger UI title & description for better readability and clarity. SPECTACULAR_SETTINGS = { + 'TITLE': 'RECIPE-APP API', + 'DESCRIPTION': 'This API powers a recipe management application. \ + It supports Docker-based setup, GitHub Actions for CI/CD, and \ + provides endpoints for managing users, tags, ingredients, \ + and recipes. The API includes features like image uploads, \ + filtering, and deployment capabilities, all backed by \ + comprehensive unit testing.', + 'VERSION': '1.0.0', + 'SERVE_INCLUDE_SCHEMA': False, 'COMPONENT_SPLIT_REQUEST': True, }