mirror of
https://github.com/PokeAPI/pokeapi
synced 2025-02-17 04:58:27 +00:00
4 lines
91 B
INI
4 lines
91 B
INI
from multiprocessing import cpu_count
|
|
|
|
bind = '0.0.0.0:8000'
|
|
workers = cpu_count() * 2 + 1
|