Set unbuffered binary stdout and stderr.

This commit is contained in:
Patrick Jentsch 2019-09-13 08:49:00 +02:00
parent 1bdae333b7
commit 591850bbfd

View File

@ -2,11 +2,12 @@
if [ $# -eq 0 ]
then
venv/bin/python opaque.py
venv/bin/python -u opaque.py
else
if [[ $1 == "--setup-database" ]]
then
venv/bin/python -m flask db init
venv/bin/python -m flask db migrate -m "initial migration"
venv/bin/python -m flask db upgrade
venv/bin/python -m flask insert-initial-database-entries
fi