9 lines
138 B
Bash
9 lines
138 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
ip="0.0.0.0"
|
||
|
port="8803"
|
||
|
|
||
|
workers=$((`getconf _NPROCESSORS_ONLN` * 4))
|
||
|
|
||
|
gunicorn -w $workers -b $ip:$port -n "OEBB API" main
|