mirror of
https://github.com/Balshgit/public.git
synced 2025-09-12 16:40:43 +03:00
61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
"""
|
|
Main URL mapping configuration file.
|
|
|
|
Include other URLConfs from external apps using method `include()`.
|
|
|
|
It is also a good practice to keep a single URL to the root index page.
|
|
|
|
This examples uses Django's default media
|
|
files serving technique in development.
|
|
"""
|
|
|
|
from django.conf import settings
|
|
from django.contrib import admin
|
|
from django.contrib.admindocs import urls as admindocs_urls
|
|
from django.urls import include, path
|
|
from django.views.generic import TemplateView
|
|
from health_check import urls as health_urls
|
|
|
|
from server.apps.main import urls as main_urls
|
|
from server.apps.main.views import index
|
|
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = [
|
|
# Apps:
|
|
path('main/', include(main_urls, namespace='main')),
|
|
|
|
# Health checks:
|
|
path('health/', include(health_urls)), # noqa: DJ05
|
|
|
|
# django-admin:
|
|
path('admin/doc/', include(admindocs_urls)), # noqa: DJ05
|
|
path('admin/', admin.site.urls),
|
|
|
|
# Text and xml static files:
|
|
path('robots.txt', TemplateView.as_view(
|
|
template_name='txt/robots.txt',
|
|
content_type='text/plain',
|
|
)),
|
|
path('humans.txt', TemplateView.as_view(
|
|
template_name='txt/humans.txt',
|
|
content_type='text/plain',
|
|
)),
|
|
|
|
# It is a good practice to have explicit index view:
|
|
path('', index, name='index'),
|
|
]
|
|
|
|
if settings.DEBUG: # pragma: no cover
|
|
import debug_toolbar # noqa: WPS433
|
|
from django.conf.urls.static import static # noqa: WPS433
|
|
|
|
urlpatterns = [
|
|
# URLs specific only to django-debug-toolbar:
|
|
path('__debug__/', include(debug_toolbar.urls)), # noqa: DJ05
|
|
] + urlpatterns + static( # type: ignore
|
|
# Serving media files in development only:
|
|
settings.MEDIA_URL,
|
|
document_root=settings.MEDIA_ROOT,
|
|
)
|