Initial backend commit for vod

This commit is contained in:
SergeantPanda 2025-08-02 10:42:36 -05:00
parent 1c47b7f84a
commit 84aa631196
17 changed files with 1393 additions and 1 deletions

View file

@ -28,6 +28,7 @@ INSTALLED_APPS = [
"apps.output",
"apps.proxy.apps.ProxyConfig",
"apps.proxy.ts_proxy",
"apps.vod.apps.VODConfig",
"core",
"daphne",
"drf_yasg",

View file

@ -65,6 +65,9 @@ urlpatterns = [
path("redoc/", schema_view.with_ui("redoc", cache_timeout=0), name="schema-redoc"),
# Optionally, serve the raw Swagger JSON
path("swagger.json", schema_view.without_ui(cache_timeout=0), name="schema-json"),
# VOD
path("api/vod/", include("apps.vod.urls")),
path("proxy/vod/", include("apps.proxy.vod_proxy.urls")),
# Catch-all routes should always be last
path("", TemplateView.as_view(template_name="index.html")), # React entry point
path("<path:unused_path>", TemplateView.as_view(template_name="index.html")),