Update project template to make swagger working.
This commit is contained in:
parent
144344ebf9
commit
2f1d854a5e
|
@ -67,6 +67,7 @@ INSTALLED_APPS = [
|
||||||
'rest_framework.authtoken',
|
'rest_framework.authtoken',
|
||||||
'passlib.ext.django',
|
'passlib.ext.django',
|
||||||
'django_countries',
|
'django_countries',
|
||||||
|
'rest_framework_swagger',
|
||||||
# 'debug_toolbar',
|
# 'debug_toolbar',
|
||||||
|
|
||||||
# Django.contrib
|
# Django.contrib
|
||||||
|
@ -228,7 +229,8 @@ REST_FRAMEWORK = {
|
||||||
'rest_framework.authentication.TokenAuthentication',
|
'rest_framework.authentication.TokenAuthentication',
|
||||||
),
|
),
|
||||||
'DEFAULT_FILTER_BACKENDS': (
|
'DEFAULT_FILTER_BACKENDS': (
|
||||||
('rest_framework.filters.DjangoFilterBackend',)
|
# TODO(@slamora): commented to be able to run rest swagger
|
||||||
|
#('rest_framework.filters.DjangoFilterBackend',)
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
from django.conf.urls import include, url
|
from django.conf.urls import include, url
|
||||||
|
from rest_framework_swagger.views import get_swagger_view
|
||||||
|
|
||||||
|
|
||||||
|
schema_view = get_swagger_view(title='Orchestra API')
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
|
url(r'^swagger/$', schema_view),
|
||||||
url(r'', include('orchestra.urls')),
|
url(r'', include('orchestra.urls')),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue