mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 14:16:46 +00:00
11 lines
202 B
Python
11 lines
202 B
Python
#!/usr/bin/env python
|
|
import multiprocessing
|
|
import os
|
|
|
|
|
|
bind = '127.0.0.1:8000'
|
|
accesslog = '-'
|
|
errorlog = '-'
|
|
loglevel = os.getenv('DEBUG_LEVEL', 'info')
|
|
workers = multiprocessing.cpu_count() * 2 + 1
|