celery
celery copied to clipboard
How do you add celery beat to this? Can it be on the existing celery service?
trafficstars
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.