2021-11-04 17:35:34 +08:00
|
|
|
"""project URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/3.2/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
1. Import the include() function: from django.urls import include, path
|
|
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
|
|
"""
|
2021-11-04 23:09:35 +08:00
|
|
|
from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView, SpectacularSwaggerView
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
from django.urls import path, include
|
2021-11-04 17:35:34 +08:00
|
|
|
from django.contrib import admin
|
2021-11-04 23:09:35 +08:00
|
|
|
from django.conf import settings
|
|
|
|
import debug_toolbar
|
|
|
|
|
2021-11-04 17:35:34 +08:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('admin/', admin.site.urls),
|
2021-11-04 23:09:35 +08:00
|
|
|
path('api/schema/', SpectacularAPIView.as_view(), name='schema'),
|
|
|
|
path('api/schema/swagger-ui/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'),
|
|
|
|
path('api/schema/redoc/', SpectacularRedocView.as_view(url_name='schema'), name='redoc'),
|
|
|
|
path('__debug__/', include(debug_toolbar.urls)),
|
|
|
|
|
|
|
|
*static(settings.STATIC_URL, document_root=settings.STATIC_ROOT),
|
|
|
|
*static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT),
|
|
|
|
|
|
|
|
path('api/', include('apps.system.urls')),
|
2021-11-04 17:35:34 +08:00
|
|
|
]
|