From b61339b25c56480bf016f151b30f883d4eb348ba Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 23 Mar 2026 12:44:32 -0400 Subject: [PATCH] [just] Add celery and beat commands --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index 22d1010..8f989cf 100644 --- a/justfile +++ b/justfile @@ -8,3 +8,9 @@ django: shell: poetry run python manage.py shell + +celery: + poetry run celery -A vrobbler worker -l info --concurrency=2 --pool=threads + +celery-beat: + poetry run celery -A vrobbler beat -l info