19 lines
635 B
Python
19 lines
635 B
Python
"""
|
|
tradingagents_web URL Configuration
|
|
"""
|
|
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/auth/', include('apps.authentication.urls')),
|
|
path('api/trading/', include('apps.trading_api.urls')),
|
|
path('ws/', include('apps.websocket.urls')),
|
|
]
|
|
|
|
# Serve media files in development
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) |