2022-06-04 19:30:54 +03:00
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
2022-07-02 00:05:05 +03:00
|
|
|
from django.template.defaulttags import url
|
|
|
|
from django.urls import path, include, re_path
|
2022-06-04 16:01:23 +03:00
|
|
|
|
2022-07-02 00:05:05 +03:00
|
|
|
# openapi schema
|
|
|
|
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="Snippets API",
|
|
|
|
default_version="v1",
|
|
|
|
description="Test description",
|
|
|
|
terms_of_service="https://www.google.com/policies/terms/",
|
|
|
|
contact=openapi.Contact(email="contact@snippets.local"),
|
|
|
|
license=openapi.License(name="BSD License"),
|
|
|
|
),
|
|
|
|
public=True,
|
|
|
|
permission_classes=(permissions.AllowAny,),
|
2022-06-04 19:30:54 +03:00
|
|
|
)
|
2022-07-02 00:05:05 +03:00
|
|
|
|
|
|
|
urlpatterns = [path("api/", include("game.urls"))] + static(
|
|
|
|
settings.MEDIA_URL, document_root=settings.MEDIA_ROOT
|
|
|
|
)
|
|
|
|
|
|
|
|
if settings.DEBUG:
|
|
|
|
urlpatterns += [
|
|
|
|
re_path(
|
|
|
|
r"^swagger(?P<format>\.json|\.yaml)$",
|
|
|
|
schema_view.without_ui(cache_timeout=0),
|
|
|
|
name="schema-json",
|
|
|
|
),
|
|
|
|
re_path(
|
|
|
|
r"^swagger/$",
|
|
|
|
schema_view.with_ui("swagger", cache_timeout=0),
|
|
|
|
name="schema-swagger-ui",
|
|
|
|
),
|
|
|
|
re_path(
|
|
|
|
r"^redoc/$",
|
|
|
|
schema_view.with_ui("redoc", cache_timeout=0),
|
|
|
|
name="schema-redoc",
|
|
|
|
),
|
|
|
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|