1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-14 15:53:28 +01:00
pywb/run-gunicorn.sh

11 lines
183 B
Bash
Raw Permalink Normal View History

#!/bin/sh
pip install gunicorn
if [ $? -ne 0 ]; then
"gunicorn install failed"
exit 1
fi
export PYWB_CONFIG_FILE=config.yaml
gunicorn -w 4 pywb.apps.wayback -b 0.0.0.0:8080