18 lines
482 B
Python
18 lines
482 B
Python
|
|
"""
|
||
|
|
URL configuration for the project.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from django.contrib import admin
|
||
|
|
from django.urls import path, include
|
||
|
|
from django.conf import settings
|
||
|
|
from django.conf.urls.static import static
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('admin/', admin.site.urls),
|
||
|
|
path('api/', include('apps.api.urls')),
|
||
|
|
path('graphql/', include('apps.api.graphql_urls')),
|
||
|
|
]
|
||
|
|
|
||
|
|
# Serve media files in development
|
||
|
|
if settings.DEBUG:
|
||
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|