mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
17fa459dc3
* Fix inconsistent line length and move config to pyproject.toml Fix #2720 * Fix running tox with AUTOFIXABLE_STYLES * Adjust some styles * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Adjust more styles * Split isort and flake8 tests --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
71 lines
2.6 KiB
Python
71 lines
2.6 KiB
Python
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
{%- if cookiecutter.use_async == 'y' %}
|
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
|
{%- endif %}
|
|
from django.urls import include, path
|
|
from django.views import defaults as default_views
|
|
from django.views.generic import TemplateView
|
|
{%- if cookiecutter.use_drf == 'y' %}
|
|
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
|
|
from rest_framework.authtoken.views import obtain_auth_token
|
|
{%- endif %}
|
|
|
|
urlpatterns = [
|
|
path("", TemplateView.as_view(template_name="pages/home.html"), name="home"),
|
|
path("about/", TemplateView.as_view(template_name="pages/about.html"), name="about"),
|
|
# Django Admin, use {% raw %}{% url 'admin:index' %}{% endraw %}
|
|
path(settings.ADMIN_URL, admin.site.urls),
|
|
# User management
|
|
path("users/", include("{{ cookiecutter.project_slug }}.users.urls", namespace="users")),
|
|
path("accounts/", include("allauth.urls")),
|
|
# Your stuff: custom urls includes go here
|
|
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
{%- if cookiecutter.use_async == 'y' %}
|
|
if settings.DEBUG:
|
|
# Static file serving when using Gunicorn + Uvicorn for local web socket development
|
|
urlpatterns += staticfiles_urlpatterns()
|
|
{%- endif %}
|
|
{% if cookiecutter.use_drf == 'y' %}
|
|
# API URLS
|
|
urlpatterns += [
|
|
# API base url
|
|
path("api/", include("config.api_router")),
|
|
# DRF auth token
|
|
path("auth-token/", obtain_auth_token),
|
|
path("api/schema/", SpectacularAPIView.as_view(), name="api-schema"),
|
|
path(
|
|
"api/docs/",
|
|
SpectacularSwaggerView.as_view(url_name="api-schema"),
|
|
name="api-docs",
|
|
),
|
|
]
|
|
{%- endif %}
|
|
|
|
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
|