An open API service indexing awesome lists of open source software.

https://github.com/mr-hrr-harry/django_celery

This is a simple app on celery config with django
https://github.com/mr-hrr-harry/django_celery

celery cronjob-scheduler django interval-scheduling postgres rabbitmq

Last synced: 6 months ago
JSON representation

This is a simple app on celery config with django

Awesome Lists containing this project

README

          

# requirements
python3, pip3

# venv setup
python3 -m venv venv

# required packages
pip install django

pip install celery

pip install redis

pip install django-celery-results

# named worker
celery -A django_celery.celery worker -n worker1 -l INFO

# integrated celery beat postgres
celery -A django_celery.beat beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler