Three different projects that work together!
-
c1
send data toc2
-
c2
receive data fromc1
and send data toc3
-
c3
receive data fromc2
and return results toc2
-
c2
return results toc1
cd c1/
python main.py # run main file to start sending data
celery -A tasks worker -l INFO
cd c2/
celery -A tasks worker -l INFO
cd c3/
celery -A tasks worker -l INFO
Warning: update your
broker
andbackend
urls!