First aquilenet deployment

It's hacky as hell, but it's what we currently have deployed... We'll
have to come back to that later.
This commit is contained in:
Félix Baylac-Jacqué 2021-10-19 18:41:05 +02:00
parent 682b538e16
commit f53d5b6373
Signed by: picnoir
GPG Key ID: EFD315F31848DBA4
1 changed files with 4 additions and 2 deletions

View File

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