Axione-FTTH-Test/startGunicornService

8 lines
186 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
set -euo pipefail
export PATH="/usr/bin/:/bin/:/srv/www/Axione-FTTH-Test/.poetry/bin/"
poetry install
poetry run gunicorn -b "localhost:${PORT}" --timeout 120 'webapp:app'