diff options
Diffstat (limited to 'lgproxy/start.sh')
-rw-r--r-- | lgproxy/start.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lgproxy/start.sh b/lgproxy/start.sh new file mode 100644 index 0000000..2745f05 --- /dev/null +++ b/lgproxy/start.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -euo pipefail +IFS=$'\n\t' + +. ~/venv/bin/activate +cd lgp +gunicorn -b "[::]:${LGPROXY_PORT:-6000}" --workers=2 lgproxy:app |