- Full PWA support with offline capabilities - Comprehensive search across songs, playlists, and channels - Offline playlist manager with download tracking - Pre-built frontend for zero-build deployment - Docker-based deployment with docker compose - Material-UI dark theme interface - YouTube audio download and management - Multi-user authentication support
6 lines
154 B
Python
6 lines
154 B
Python
# Config app
|
|
|
|
# This will make sure the Celery app is always imported when Django starts
|
|
from .celery import app as celery_app
|
|
|
|
__all__ = ('celery_app',)
|