29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
backend/
|
|
|
|
|
├─ core/
|
|
│ ├─ settings.py ← Public Paths + Variables
|
|
│ ├─ logging.py ← Console Log
|
|
│ ├─ db.py ← SQLAlchemy Engine + Bootstrap Schema
|
|
│ ├─ db_xp.py ← XP + Users Table
|
|
│ ├─ db_cache.py ← Compat Layer
|
|
│ ├─ db_utils.py ← DB Upsert
|
|
│ ├─ progress_bus.py ← Progress
|
|
│ ├─ network.py ← Stealth Session
|
|
│ ├─ formats.py ← Format Selection + Caching
|
|
│ └─ download.py ← Downloader + Converter
|
|
|
|
|
|─ web/
|
|
| ├─ app.py ← Quart App
|
|
| └─ db_extra.py ← Proxy Pool + Download Stats + Abuse Windows
|
|
|
|
|
|─ data/
|
|
| ├─ users/
|
|
| └─ local.db ← Local Database for Dev Env
|
|
|
|
|
├─ .50.txt ← Proxy List
|
|
├─ .alembic.ini ← Database Init Script
|
|
├─ dockerfile ← Docker File
|
|
├─ structure.txt ← Structure
|
|
├─ requirements.txt ← Dependencies
|
|
├─ playwright_cookies.txt ← YouTube Cookies
|