Learn Dramatiq basics
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Drew Bednar 2c1d4870c0 Initial setup 2 years ago
.gitignore Initial setup 2 years ago
LICENSE Initial commit 2 years ago
README.md Initial setup 2 years ago
dev_requirements.in Initial setup 2 years ago
dev_requirements.txt Initial setup 2 years ago
docker-compose-rabbit.yml Initial setup 2 years ago
docker-compose-redis.yml Initial setup 2 years ago
requirements.in Initial setup 2 years ago
requirements.txt Initial setup 2 years ago

README.md

learn_dramatiq

Learn Dramatiq basics

Docker Compose Backends

Since Dramatiq supports Redis and RabbitMQ as queue backends, there are two separate docker-compose files for each. These are temporary dev backends; no persistent volumes are used and there is no TLS.

Redis:

docker compose -f docker-compose-redis.yml up -d
docker compose -f docker-compose-redis.yml down

RabbitMQ:

It takes some time for RabbitMQ to serve requests. This does have a persistent volume.

docker compose -f docker-compose-rabbit.yml up -d
docker compose -f docker-compose-rabbit.yml down