Skip to content

Instantly share code, notes, and snippets.

@KimSoungRyoul
Last active April 14, 2021 06:48
Show Gist options
  • Save KimSoungRyoul/2088182fbdc40114ee717697747b58ed to your computer and use it in GitHub Desktop.
Save KimSoungRyoul/2088182fbdc40114ee717697747b58ed to your computer and use it in GitHub Desktop.
# settings.py
INSTALLED_APPS = [
# ...
'rest_framework',
'drf_spectacular',
# ...
]
REST_FRAMEWORK = {
# YOUR SETTINGS drf의 schema 클래스를 drf-specacular의 AutoSchema로 교체해줍니다.
'DEFAULT_SCHEMA_CLASS': 'drf_spectacular.openapi.AutoSchema',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment