Skip to main content

Installation

You can install scallion via pip:
pip install scallion

Running Scallion

Run scallion by providing the broker URL and app name
celery --broker=redis://:password@redis:6379/0 -A test-app scallion
By default, scallion runs on port 5555. You can modify the port scallion runs out with the --port option:
celery -A test-app scallion --port=5001
You can also run scallion via docker:
docker run -v local:/data -p 5555:5555 umoh1/scallion celery --app=test-app scallion