tubearchivist/backend
bmcdonough 119010de77 if pot_provide_url, append to extractor_args 2025-11-16 16:20:26 +00:00
..
appsettings UI changes to support pot_provider_url 2025-11-16 15:10:00 +00:00
channel add test_zero_config_overwrite 2025-09-27 19:53:56 +07:00
common Configure git to always use LF (#1013) 2025-07-31 21:29:58 +07:00
config add unstable tag 2025-11-15 22:54:05 +07:00
download if pot_provide_url, append to extractor_args 2025-11-16 16:20:26 +00:00
playlist add missing local playlist downloaded match, #1092 2025-11-15 22:46:02 +07:00
stats limit log to debug only 2025-11-15 11:08:33 +07:00
task add metadata embed task and callback 2025-10-29 22:31:30 +07:00
user fixed linting errors 2025-11-15 19:21:51 +00:00
video add metadata embed task and callback 2025-10-29 22:31:30 +07:00
README.md add django app overview readme 2024-08-10 16:12:06 +02:00
manage.py renamed django app folder to backend 2024-08-03 21:58:22 +02:00
requirements.txt added bgutil-ytdlp-pot-provider 2025-11-15 19:26:41 +00:00

README.md

Django Setup

Apps

The backend is split up into the following apps.

config

Root Django App. Doesn't define any views.

  • Has main settings.py
  • Has main urls.py responsible for routing to other apps

common

Functionality shared between apps.

Defines views on the root /api/* path. Has base views to inherit from.

  • Connections to ES and Redis
  • Searching
  • URL parser
  • Collection of helper functions

appsettings

Responsible for functionality from the settings pages.

Defines views at /api/appsettings/*.

  • Index setup
  • Reindexing
  • Snapshots
  • Filesystem Scan
  • Manual import

channel

Responsible for Channel Indexing functionality.

Defines views at /api/channel/* path.

download

Implements download functionality with yt-dlp.

Defines views at /api/download/*.

  • Download videos
  • Queue management
  • Thumbnails
  • Subscriptions

playlist

Implements playlist functionality.

Defines views at /api/playlist/*.

  • Index Playlists
  • Manual Playlists

stats

Builds aggregations views for the statistics dashboard.

Defines views at /api/stats/*.

task

Defines tasks for Celery.

Defines views at /api/task/*.

  • Has main tasks.py with all shared_task definitions
  • Has CustomPeriodicTask model
  • Implements apprise notifications links
  • Implements schedule functionality

user

Implements user and auth functionality.

Defines views at /api/config/*.

  • Defines custom Account model

video

Index functionality for videos.

Defines views at /api/video/*.

  • Index videos
  • Index comments
  • Index/download subtitles
  • Media stream parsing