Release v1.0.0rc1
Some checks failed
CI / Checks (push) Has been cancelled

This commit is contained in:
2025-08-18 07:09:27 +02:00
commit d909391ee6
383 changed files with 22792 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('', include('social_django.urls', namespace='sso')),
path('', admin.site.urls),
]

View File

@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
from django.contrib import admin
from django.urls import include, path
handler404 = 'hotpocket_backend.apps.ui.views.errors.page_not_found'
handler500 = 'hotpocket_backend.apps.ui.views.errors.server_error'
handler400 = 'hotpocket_backend.apps.ui.views.errors.bad_request'
handler403 = 'hotpocket_backend.apps.ui.views.errors.permission_denied'
urlpatterns = [
path('', include('social_django.urls', namespace='sso')),
path('admin/', admin.site.urls),
path('', include('hotpocket_backend.apps.ui.urls')),
]

View File

@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
from django.urls import include, path
urlpatterns = [
path('', include('hotpocket_backend.apps.ui.urls')),
]

View File

@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
from django.urls import include, path
handler404 = 'hotpocket_backend.apps.ui.views.errors.page_not_found'
handler500 = 'hotpocket_backend.apps.ui.views.errors.server_error'
handler400 = 'hotpocket_backend.apps.ui.views.errors.bad_request'
handler403 = 'hotpocket_backend.apps.ui.views.errors.permission_denied'
urlpatterns = [
path('', include('social_django.urls', namespace='sso')),
path('', include('hotpocket_backend.apps.ui.urls')),
]