I have 3 Separate Django Projects sharing same DB running on the same Machine. What I require is to configure Celery For them. Now my question is:
1.) Whether should I run separate celery daemons for separate projects, and set different vhosts and users in rabbitmq which I don't want to opt as it would be a waste of resources or
2.) Is there a way I can target all the tasks from different projects to a single celery server.
Also, How handy would supervisord be in the solution?