celery beat command for django celery beat

celery -A myapp beat -l info - "celery": command to invoke the Celery command-line program. - "-A myapp": specifies the name of the Django app to use. - "beat": starts the Celery beat process for scheduling tasks. - "-l info": sets the log level to "info" for the beat process.