6 lines
110 B
Text
6 lines
110 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
poetry run gunicorn -b "localhost:${PORT}" --timeout 120 'webapp.app'
|