7 lines
183 B
Text
7 lines
183 B
Text
|
#!/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 'main:app'
|