Hi, I have my Django-based app hosted in PA but some jobs take longer than 5' to process, so I need a queue or an scheduled task to avoid restarting after those 5'.
Locally I have my Django project running with Celery and RabbitMQ, and it works perfectly well, but I've seen that PA doesn't support them. Am I right?
The alternative I've read is the one that appears here:
https://help.pythonanywhere.com/pages/AsyncInWebApps
However, if this is the only option I can use, I would be interested in passing directly the task to the tab "Always-on task" from the code, rather than having to create it manually from the collected data. The idea is to automate all the process so that I don't need to manually create the task.
Thanks in advanced,
PPMCLAB