makefile: allow starting gunicorn with workers=N command

This commit is contained in:
RhodeCode Admin 2024-05-22 15:36:20 +02:00
parent 29de931a2e
commit 112de0ec6d

View file

@ -144,11 +144,13 @@ sh:
dev-srv:
pserve --reload .dev/dev.ini
## Allows changes of workers e.g make dev-srv-g workers=2
workers?=1
.PHONY: dev-srv-g
## run gunicorn multi process workers
dev-srv-g:
gunicorn --paste .dev/dev.ini --bind=0.0.0.0:10020 --config=.dev/gunicorn_config.py --timeout=120 --reload
gunicorn --paste=.dev/dev.ini --bind=0.0.0.0:10020 --config=.dev/gunicorn_config.py --timeout=120 --reload --workers=$(workers)
# Default command on calling make