You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've used celery in the past but something that is appealing for me with django-q is how simple it is. I'm about to deploy (using a service called Render.com) and I'm wondering if there's a way to deploy it in the background (so that it doesn't take over the console). I have a startup script that runs gunicorn and starts up my web server.
Sorry if this is a noob deployment question:
I've used celery in the past but something that is appealing for me with django-q is how simple it is. I'm about to deploy (using a service called Render.com) and I'm wondering if there's a way to deploy it in the background (so that it doesn't take over the console). I have a startup script that runs
gunicorn
and starts up my web server.Is there a way for me to somehow call
python manage.py qcluster
so that it strictly runs in the background?Edit: Nevermind, sorry, just learned about the
&
. For anyone wondering the same thing, you can append an ampersand to run something in the background.python manage.py qcluster &
The text was updated successfully, but these errors were encountered: