2022-11-23 11:41:43 +03:00
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
from django.contrib import admin
|
|
|
|
from django.urls import include, path
|
|
|
|
from django.views import defaults as default_views
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
from drf_spectacular.views import (
|
|
|
|
SpectacularAPIView,
|
|
|
|
SpectacularRedocView,
|
|
|
|
SpectacularSwaggerView,
|
|
|
|
)
|
|
|
|
|
|
|
|
urlpatterns = [
|
2022-12-06 12:03:58 +03:00
|
|
|
path("home", TemplateView.as_view(template_name="pages/home.html"), name="home"),
|
2022-11-23 11:41:43 +03:00
|
|
|
path(
|
|
|
|
"about/", TemplateView.as_view(template_name="pages/about.html"), name="about"
|
|
|
|
),
|
2022-11-25 12:16:10 +03:00
|
|
|
path("health/", include("health_check.urls")),
|
2023-01-01 23:18:24 +03:00
|
|
|
path("cms/", include("cms.urls")),
|
2022-11-23 11:41:43 +03:00
|
|
|
# Django Admin, use {% url 'admin:index' %}
|
|
|
|
path(settings.ADMIN_URL, admin.site.urls),
|
|
|
|
# User management
|
|
|
|
path("users/", include("akarpov.users.urls", namespace="users")),
|
2023-01-11 01:06:08 +03:00
|
|
|
path("tools/", include("akarpov.tools.urls", namespace="tools")),
|
2023-02-10 13:30:20 +03:00
|
|
|
path("shortener/", include("akarpov.shortener.urls", namespace="shortener")),
|
2022-11-23 11:41:43 +03:00
|
|
|
path("ckeditor/", include("ckeditor_uploader.urls")),
|
|
|
|
path("accounts/", include("allauth.urls")),
|
2022-12-06 12:03:58 +03:00
|
|
|
path("", include("akarpov.blog.urls", namespace="blog")),
|
2022-11-23 11:41:43 +03:00
|
|
|
# Your stuff: custom urls includes go here
|
|
|
|
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|
|
|
|
|
|
# API URLS
|
|
|
|
urlpatterns += [
|
|
|
|
# API base url
|
|
|
|
path("api/", include("config.api_router")),
|
|
|
|
# DRF auth token
|
2023-01-11 01:06:08 +03:00
|
|
|
path("api/schema/", SpectacularAPIView.as_view(), name="api-schema"),
|
|
|
|
path("api/schema/", SpectacularAPIView.as_view(), name="api-redoc-schema"),
|
2022-11-23 11:41:43 +03:00
|
|
|
path(
|
|
|
|
"api/docs/",
|
|
|
|
SpectacularSwaggerView.as_view(url_name="api-schema"),
|
2022-12-06 12:03:58 +03:00
|
|
|
name="swagger",
|
2022-11-23 11:41:43 +03:00
|
|
|
),
|
|
|
|
path(
|
|
|
|
"api/redoc/",
|
|
|
|
SpectacularRedocView.as_view(url_name="api-redoc-schema"),
|
|
|
|
name="redoc",
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
if settings.DEBUG:
|
|
|
|
# This allows the error pages to be debugged during development, just visit
|
|
|
|
# these url in browser to see how these error pages look like.
|
|
|
|
urlpatterns += [
|
|
|
|
path(
|
|
|
|
"400/",
|
|
|
|
default_views.bad_request,
|
|
|
|
kwargs={"exception": Exception("Bad Request!")},
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"403/",
|
|
|
|
default_views.permission_denied,
|
|
|
|
kwargs={"exception": Exception("Permission Denied")},
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"404/",
|
|
|
|
default_views.page_not_found,
|
|
|
|
kwargs={"exception": Exception("Page not Found")},
|
|
|
|
),
|
|
|
|
path("500/", default_views.server_error),
|
|
|
|
]
|
|
|
|
if "debug_toolbar" in settings.INSTALLED_APPS:
|
|
|
|
import debug_toolbar
|
|
|
|
|
|
|
|
urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns
|