I am working on a Django application which is deployed on a Windows Server using IIS. I want to use Huey
to be able to run background tasks e.g. sending of emails and report generation. Celery
does not support Windows hence my decision to use Huey
.
According to the documentation, you can run the consumer using the following command:
./manage.py run_huey
My question is, how and where will I need to run this command to work with my setup i.e. Windows and IIS? It should also work when the server is restarted.