B-SAHIL/djago-celery-beat

Sahil B

Backend Engineer
This guide will walk you through the process of setting up a Django app Celery, Celery Beat and creating schedule task & AsyncTask.
Before you begin, ensure that you have the following prerequisites installed on your system:
Python (3.x recommended)
pip (Python package manager)
Git (optional but recommended for version control)
Redis server should be running
Clone the Repository
git clone https://github.com/B-SAHIL/djago-celery-beat.git
Start the Project
python -m venv venvvenv\Scripts\activate source venv/bin/activatepip install -r requirements.txtpython manage.py migratepython manage.py createsuperuser
This will start app server
python manage.py runserver
This will start Celery worker server
celery -A client worker -l info
This will start Celery Beat server
celery -A client beat -l info
Partner With Sahil
View Services

More Projects by Sahil