mirror of
https://github.com/xpltdco/media-rip.git
synced 2026-04-03 02:53:58 -06:00
Full-featured self-hosted yt-dlp web frontend:
- Python 3.12+ / FastAPI backend with async SQLite, SSE transport, session isolation
- Vue 3 / TypeScript / Pinia frontend with real-time progress, theme picker
- 3 built-in themes (cyberpunk/dark/light) + drop-in custom theme system
- Admin auth (bcrypt), purge system, cookie upload, file serving
- Docker multi-stage build, GitHub Actions CI/CD
- 179 backend tests, 29 frontend tests (208 total)
Slices: S01 (Foundation), S02 (SSE+Sessions), S03 (Frontend),
S04 (Admin+Auth), S05 (Themes), S06 (Docker+CI)
47 lines
No EOL
1.1 KiB
Text
47 lines
No EOL
1.1 KiB
Text
pyproject.toml
|
|
app/__init__.py
|
|
app/dependencies.py
|
|
app/main.py
|
|
app/core/__init__.py
|
|
app/core/config.py
|
|
app/core/database.py
|
|
app/core/sse_broker.py
|
|
app/middleware/__init__.py
|
|
app/middleware/session.py
|
|
app/models/__init__.py
|
|
app/models/job.py
|
|
app/models/session.py
|
|
app/routers/__init__.py
|
|
app/routers/admin.py
|
|
app/routers/cookies.py
|
|
app/routers/downloads.py
|
|
app/routers/files.py
|
|
app/routers/formats.py
|
|
app/routers/health.py
|
|
app/routers/sse.py
|
|
app/routers/system.py
|
|
app/routers/themes.py
|
|
app/services/__init__.py
|
|
app/services/download.py
|
|
app/services/output_template.py
|
|
app/services/purge.py
|
|
app/services/theme_loader.py
|
|
media_rip.egg-info/PKG-INFO
|
|
media_rip.egg-info/SOURCES.txt
|
|
media_rip.egg-info/dependency_links.txt
|
|
media_rip.egg-info/requires.txt
|
|
media_rip.egg-info/top_level.txt
|
|
tests/test_admin.py
|
|
tests/test_api.py
|
|
tests/test_config.py
|
|
tests/test_database.py
|
|
tests/test_download_service.py
|
|
tests/test_file_serving.py
|
|
tests/test_health.py
|
|
tests/test_models.py
|
|
tests/test_output_template.py
|
|
tests/test_purge.py
|
|
tests/test_session_middleware.py
|
|
tests/test_sse.py
|
|
tests/test_sse_broker.py
|
|
tests/test_themes.py |