mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
11 lines
180 B
Bash
11 lines
180 B
Bash
|
#!/bin/sh
|
||
|
pip install gunicorn
|
||
|
|
||
|
if [ $? -ne 0 ]; then
|
||
|
"uwsgi install failed"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
export PYWB_CONFIG_FILE=config.yaml
|
||
|
gunicorn -w 4 pywb.apps.wayback -b 0.0.0.0:8080
|