mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
5 lines
141 B
Bash
5 lines
141 B
Bash
|
#! /usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
# celery worker -A felicity.worker -l info -Q main-queue -c 1
|
||
|
celery -A worker worker -l info -Q main-queue -c 1
|