pygps/run.sh
2017-10-09 09:07:47 +02:00

9 lines
142 B
Bash
Executable file

#!/bin/bash
ip="0.0.0.0"
port="6957"
workers=$((`getconf _NPROCESSORS_ONLN` * 4))
gunicorn -w $workers -b $ip:$port -n "GPS Endpoint" main