45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
"""
|
|
URL Configuration for the project.
|
|
|
|
The `urlpatterns` list routes URLs to views.
|
|
"""
|
|
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.urls import include, path
|
|
from drf_yasg import openapi
|
|
from drf_yasg.views import get_schema_view
|
|
from rest_framework import permissions
|
|
|
|
# Swagger schema view
|
|
schema_view = get_schema_view(
|
|
openapi.Info(
|
|
title="Mostovik API",
|
|
default_version="v1",
|
|
description="API documentation for Mostovik project",
|
|
terms_of_service="https://www.google.com/policies/terms/",
|
|
contact=openapi.Contact(email="contact@mostovik.local"),
|
|
license=openapi.License(name="BSD License"),
|
|
),
|
|
public=True,
|
|
permission_classes=(permissions.AllowAny,),
|
|
)
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"",
|
|
schema_view.with_ui("swagger", cache_timeout=0),
|
|
name="schema-swagger-ui",
|
|
),
|
|
path("admin/", admin.site.urls),
|
|
path("health/", include("apps.core.urls")),
|
|
path("api/v1/", include("config.api_v1_urls", namespace="api_v1")),
|
|
path("auth/", include("rest_framework.urls")),
|
|
]
|
|
|
|
# Serve media files in development
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|