mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-08 21:49:54 +00:00
12 lines
422 B
Python
12 lines
422 B
Python
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from .app.urls import urlpatterns
|
|
|
|
urlpatterns = [
|
|
path('', include(urlpatterns)),
|
|
path('api/1/auth/social/', include('social_django.urls', namespace='social')),
|
|
path('admin/', admin.site.urls),
|
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|