aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-20 23:01:29 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-20 23:01:29 +0100
commit22c0d55395e631c8b53f80584ae0a4b559955db8 (patch)
treeed7909a1e830cc98ca40732f1a9a044d64fe23be
parentfixed old migration script (diff)
downloadnewspipe-22c0d55395e631c8b53f80584ae0a4b559955db8.tar.gz
newspipe-22c0d55395e631c8b53f80584ae0a4b559955db8.tar.bz2
newspipe-22c0d55395e631c8b53f80584ae0a4b559955db8.zip
redirect output of db_create to /dev/null
-rwxr-xr-xwait-for-postgres.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/wait-for-postgres.sh b/wait-for-postgres.sh
index 4cace9bd..e6bbd619 100755
--- a/wait-for-postgres.sh
+++ b/wait-for-postgres.sh
@@ -14,6 +14,6 @@ done
>&2 echo "Postgres is up - executing command"
export Newspipe_CONFIG=/newspipe/instance/production.py
-poetry run ./manager.py db_create
+poetry run ./manager.py db_create >/dev/null
poetry run pybabel compile -d newspipe/translations
poetry run ./runserver.py
bgstack15