Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upcelery integration #201
celery integration #201
Comments
|
Hi there, So right now, we use an already baked in version of a redis task queue manager as implemented in flask_rq. You can find its instantiation here: Line 8 in a4945cb Essentially, the queue is only really used in a couple of places. One is in admin/views and the other is in accounts/views. Both times it is just used for emailing. So if you want to use celery instead, just go ahead and rip out any reference to flask_rq in those files and replace it with your own celery integration. The main calls to replace in the application are get_queue() calls. Does that help? |
How to integrate celery into this app?