chess_rpg_backend/chess_backend/urls.py

10 lines
321 B
Python
Raw Normal View History

2022-06-04 19:30:54 +03:00
from django.conf import settings
from django.conf.urls.static import static
from django.urls import path, include, re_path
2022-07-02 14:57:58 +03:00
urlpatterns = (
[path("api/", include("game.urls"))]
+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
)