2021-10-19 18:41:05 +02:00
|
|
|
#!/bin/bash
|
2021-10-19 16:26:07 +02:00
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2021-10-19 18:41:05 +02:00
|
|
|
export PATH="/usr/bin/:/bin/:/srv/www/Axione-FTTH-Test/.poetry/bin/"
|
|
|
|
poetry install
|
|
|
|
poetry run gunicorn -b "localhost:${PORT}" --timeout 120 'webapp:app'
|