celery icon indicating copy to clipboard operation
celery copied to clipboard

How do you add celery beat to this? Can it be on the existing celery service?

Open vivekrc opened this issue 2 years ago • 1 comments
trafficstars

vivekrc avatar Aug 18 '23 09:08 vivekrc

For the record, you can certainly do this, just change the startCommand in your render.yml to include both commands, separated by an ampersand:

celery --app myApp beat & celery --app myApp worker

This will cause celery-beat to be run in the background.

maebert avatar Jun 10 '24 14:06 maebert