Deploying Django with celery, celery beat and channels

I was trying to deploy a Django project that uses celery and channels, I have tried different Procfile commands and i can't get the server and celery work at the same time
i used this command and only the celery worked and the djagno project didn't
web: celery -A project worker --pool=solo -l INFO & celery -A project beat -l INFO & daphne -b 0.0.0.0 -p $PORT project.asgi:application
Solution:
solved and this was the solution.
No description
Jump to solution
3 Replies
Percy
Percy8mo ago
Project ID: ca96213e-c06d-4d97-9ac5-e5cc8338fb4f
Karim Ahmed
Karim Ahmed8mo ago
ca96213e-c06d-4d97-9ac5-e5cc8338fb4f
Solution
Karim Ahmed
Karim Ahmed8mo ago
solved and this was the solution.
No description