f53d5b6373
It's hacky as hell, but it's what we currently have deployed... We'll have to come back to that later.
7 lines
186 B
Bash
Executable file
7 lines
186 B
Bash
Executable file
#!/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'
|