Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app/app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}