Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 551 Bytes

README.md

File metadata and controls

36 lines (22 loc) · 551 Bytes

START PROJECT

ACTIVATE VIRTUAL ENVIRONMENT

Make sure virtual environment is setup, and active.

INSTALL PACKAGES

Make sure requirements.txt is there, now install all the packages with below command

pip install -r requirements.txt

START SERVER

python manage.py runserver

START TASK QUEUE

START CONSUMER (CELERY WORKER/PROCESS)

Start consumer , celery worker or process to process the tasks.

celery -A core worker -l INF

START TASK MONITORING TOOL (FLOWER)

celery -A core flower