10 lines
114 B
Bash
Executable File
10 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. /venv/bin/activate
|
|
set -x
|
|
exec gunicorn \
|
|
-b 0.0.0.0:5000 \
|
|
-w "$WORKERS" \
|
|
serve:app
|
|
|