mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
73 lines
2.3 KiB
Python
73 lines
2.3 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, github, github_result, demo_view
|
|
from django_registration.backends.one_step.views import RegistrationView
|
|
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = [
|
|
# Apps:
|
|
path('main/', include(main_urls, namespace='main')),
|
|
|
|
# Other URL patterns ...
|
|
path('accounts/register/',
|
|
RegistrationView.as_view(success_url='/profile/'),
|
|
name='django_registration_register'),
|
|
path('github', github, name='github_url'),
|
|
path('github_result', github_result, name='github_result'),
|
|
path('accounts/', include('django_registration.backends.one_step.urls')),
|
|
path('accounts/', include('django.contrib.auth.urls')),
|
|
|
|
# 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'),
|
|
path('', demo_view, name='demo'),
|
|
path('celery-progress/', include('celery_progress.urls'))
|
|
]
|
|
|
|
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,
|
|
)
|