urls.pyโข2.06 kB
"""
URL configuration for django_firebase_mcp project.
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/5.2/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView, SpectacularRedocView
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView, TokenVerifyView
urlpatterns = [
path('admin/', admin.site.urls),
# API Schema and Documentation
path('api/schema/', SpectacularAPIView.as_view(), name='schema'),
path('api/schema/swagger-ui/',
SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'),
path('api/redoc/', SpectacularRedocView.as_view(url_name='schema'), name='redoc'),
# Authentication URLs
# Login, logout, password reset, etc.
path('api/auth/', include('dj_rest_auth.urls')),
path('api/auth/registration/',
include('dj_rest_auth.registration.urls')), # Registration
# Django-allauth URLs for email confirmation
path('accounts/', include('allauth.urls')),
# JWT Token URLs (direct access)
path('api/token/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
path('api/token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
path('api/token/verify/', TokenVerifyView.as_view(),
name='token_verify'), # Include base app URLs if they exist
path('api/', include('base.urls')),
# Firebase MCP URLs
path('mcp/', include('firebase_admin_mcp.urls')),
]