[scrobbles] Add basic sentiment analysis
All checks were successful
build / test (push) Successful in 2m4s

This commit is contained in:
2026-06-05 19:31:06 -04:00
parent 371e1d654c
commit dec7a79509
9 changed files with 188 additions and 8 deletions

View File

@ -163,6 +163,10 @@ CELERY_BEAT_SCHEDULE = {
"task": "scrobbles.tasks.send_mood_checkin",
"schedule": crontab(hour="*/4", minute=0),
},
"backfill-scrobble-sentiment": {
"task": "scrobbles.tasks.backfill_scrobble_sentiment",
"schedule": crontab(minute="0"),
},
}
INSTALLED_APPS = [