2022-08-08 09:43:31 +00:00
|
|
|
from django.urls import path, include
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
2022-09-16 15:18:04 +00:00
|
|
|
path('admin/', include('core.urls.admin')),
|
2022-08-08 09:43:31 +00:00
|
|
|
path('auth/', include("core.urls.auth")),
|
|
|
|
path('', include("core.urls.frontend")),
|
|
|
|
]
|
|
|
|
|
|
|
|
if settings.DEBUG:
|
|
|
|
urlpatterns.append(path('dev/', include("core.urls.dev")))
|