mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 00:55:50 +00:00
limit celery workers - need to make this configurable
This commit is contained in:
parent
c5e0de5d48
commit
4ede62d886
2 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ exec-pre = python /app/scripts/wait_for_redis.py
|
|||
; Start Redis first
|
||||
attach-daemon = redis-server
|
||||
; Then start other services
|
||||
attach-daemon = celery -A dispatcharr worker -l info
|
||||
attach-daemon = celery -A dispatcharr worker -l info --concurrency=4
|
||||
attach-daemon = celery -A dispatcharr beat -l info
|
||||
attach-daemon = daphne -b 0.0.0.0 -p 8001 dispatcharr.asgi:application
|
||||
attach-daemon = cd /app/frontend && npm run dev
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ exec-pre = python /app/scripts/wait_for_redis.py
|
|||
; Start Redis first
|
||||
attach-daemon = redis-server
|
||||
; Then start other services
|
||||
attach-daemon = celery -A dispatcharr worker -l error
|
||||
attach-daemon = celery -A dispatcharr worker -l error --concurrency=4
|
||||
attach-daemon = celery -A dispatcharr beat -l error
|
||||
attach-daemon = daphne -b 0.0.0.0 -p 8001 dispatcharr.asgi:application
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue