shynet/shynet/webserver.sh
R. Miles McCain db6dee5d69
Containerize
2020-04-14 10:55:01 -04:00

8 lines
177 B
Bash
Executable File

#!/bin/bash
# Start Gunicorn processes
echo Launching Shynet web server...
exec gunicorn shynet.wsgi:application \
--bind 0.0.0.0:8080 \
--workers 3 \
--timeout 100