Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 468 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 468 Bytes

The Filesystem as Celery Message broker

https://celery.school/filesystem-celery-message-broker

Create and activate virtual environment

$ python -m venv venv
$ venv/bin/activate
$ pip install -r requirements.txt

Start producer and worker

Using the Procfile:

$ honcho start

Without the Procfile, start the worker:

$ celery --app=worker.app worker --loglevel=INFO

Start the producer:

$ python producer.py