Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Successful in 1m53s
CI/CD Pipeline / Run Tests (push) Successful in 2m19s
CI/CD Pipeline / Build Docker Images (push) Successful in 3m26s
CI/CD Pipeline / Push to Gitea Registry (push) Failing after 20s
CI/CD Pipeline / Deploy to Server (push) Has been skipped
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
"""
|
|
URL Configuration for the project.
|
|
|
|
The `urlpatterns` list routes URLs to views.
|
|
"""
|
|
|
|
from apps.core.openapi import (
|
|
OPENAPI_PROJECT_DESCRIPTION,
|
|
OPENAPI_PROJECT_TITLE,
|
|
RussianTagSchemaGenerator,
|
|
)
|
|
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=OPENAPI_PROJECT_TITLE,
|
|
default_version="v1",
|
|
description=OPENAPI_PROJECT_DESCRIPTION,
|
|
contact=openapi.Contact(email="contact@state-corp.local"),
|
|
license=openapi.License(name="BSD License"),
|
|
),
|
|
public=True,
|
|
generator_class=RussianTagSchemaGenerator,
|
|
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("core.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)
|