My primary playground for doing Celery trials. Hence, the name.
- Workflow Primitives
To play with this project at your local environment you'll need the following requirements:
- Python >= 3.7
- Redis or Docker
The project should work the same on the all major systems macOs, Linux, Windows or WSL.
To install all dependencies such as Celery use the pip:
$ python -m pip install -r requirements.txt
-
Start Redis:
$ docker run -d -p 6379:6379 redis
-
Run the consumer (worker) instance:
$ celery -A <module> worker --loglevel=INFO
-
Run the producer:
$ python -m <module>.producer
This is free and unencumbered software released into the public domain. For more see LICENSE file.