From 5bb78afde01bafe8e86506545ef9205405491763 Mon Sep 17 00:00:00 2001 From: Yousef Alam Date: Tue, 16 May 2017 13:23:02 +0100 Subject: [PATCH] Add Celery bash scripts --- bin/run-celery-beat.sh | 3 +++ bin/run-celery.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 bin/run-celery-beat.sh create mode 100755 bin/run-celery.sh diff --git a/bin/run-celery-beat.sh b/bin/run-celery-beat.sh new file mode 100755 index 00000000..cab06e5e --- /dev/null +++ b/bin/run-celery-beat.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +celery -A mozillians beat -l INFO diff --git a/bin/run-celery.sh b/bin/run-celery.sh new file mode 100755 index 00000000..d80dbeb4 --- /dev/null +++ b/bin/run-celery.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +celery -A mozillians worker -l INFO