mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-14 15:53:28 +01:00
11 lines
183 B
Bash
Executable File
11 lines
183 B
Bash
Executable File
#!/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
|