2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 03:55:41 +00:00
Files
InvenTree/docs/_includes/gunicorn.conf.py

9 lines
178 B
Python

import multiprocessing
bind = "0.0.0.0:8000"
workers = multiprocessing.cpu_count() * 2 + 1
# preload app so that the ready functions are only executed once
preload_app = True