ValeriuV
How do I deploy Django-Q (task queue) to Railway?
yes.
Q_CLUSTER = {
'name': 'fleetdata',
'workers': 8,
'recycle': 500,
'timeout': 6000,
'retry': 10000,
'compress': True,
'save_limit': 250,
'queue_limit': 500,
'cpu_affinity': 1,
'label': 'Django Q',
'redis': config('REDIS_URL'),
}
40 replies
How do I deploy Django-Q (task queue) to Railway?
Brody, thank you for the tip. But how do I set that up? Right now I have one Procfile that has this one line in it: web: python manage.py migrate && python manage.py collectstatic --no-input && gunicorn fleetdata.wsgi & python manage.py qcluster
40 replies