41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.conf.urls.i18n import i18n_patterns
|
|
|
|
from rest_framework import permissions
|
|
from drf_yasg.views import get_schema_view
|
|
from drf_yasg import openapi
|
|
|
|
schema_view = get_schema_view(
|
|
openapi.Info(
|
|
title="Masar Express API",
|
|
default_version='v1',
|
|
description="API documentation for Masar Express Mobile App & Drivers",
|
|
terms_of_service="https://www.google.com/policies/terms/",
|
|
contact=openapi.Contact(email="support@masarexpress.com"),
|
|
license=openapi.License(name="BSD License"),
|
|
),
|
|
public=True,
|
|
permission_classes=(permissions.AllowAny,),
|
|
)
|
|
|
|
urlpatterns = [
|
|
path('i18n/', include('django.conf.urls.i18n')),
|
|
# Swagger / Redoc
|
|
path('swagger<format>/', schema_view.without_ui(cache_timeout=0), name='schema-json'),
|
|
path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
|
|
path('redoc/', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
|
|
]
|
|
|
|
urlpatterns += i18n_patterns(
|
|
path('admin/', admin.site.urls),
|
|
path('', include('core.urls')),
|
|
prefix_default_language=False
|
|
)
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
urlpatterns += static("/assets/", document_root=settings.BASE_DIR / "assets") |