Python WSGI HTTP Server for UNIX
$ pip install gunicorn
#!/usr/bin/env bash exec gunicorn server:app \ --worker-class gunicorn.workers.ggevent.GeventWorker \ --bind 0.0.0.0:$PORT "$@"
Last updated 5 years ago