Running Celery on Railway
The task at hand involves the configuration of Celery on the Railway platform, a process that has proven to be challenging. Despite an extensive search for relevant information, no actionable solutions have been found. The Django project, which is currently running on Railway with Redis, was subjected to a Procfile command in an attempt to execute Celery during the build process. However, this effort proved abortive as the command was ignored by the system.
Solution:Jump to solution
don't overthink it, you literally just deploy the same django app again into the same project, give it all the same service variables, then go into the service settings and change the start command to a command that starts celery instead of the django app
6 Replies
Project ID:
bcc96b3b-a14c-4f9a-b469-851aed558b98
bcc96b3b-a14c-4f9a-b469-851aed558b98
deploy same github project as django and just change start command to celery
how can that be done?
Solution
don't overthink it, you literally just deploy the same django app again into the same project, give it all the same service variables, then go into the service settings and change the start command to a command that starts celery instead of the django app
Yh 😅 i was overthinking it
Thank you for the help