aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/scripts/migrate.sh
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2019-07-03 16:37:19 +0200
committerGravatar Leon Sandøy <[email protected]>2019-07-03 16:37:19 +0200
commit1616d7a467e9df3996a8080b00809648a5df14a3 (patch)
tree9da2d51f6ba0e78a5ceb85291d6bcf5e8ef350c6 /docker/app/scripts/migrate.sh
parentLet's increase the verbosity and see what you guys have to say, migrate and c... (diff)
Adding whitenoise to the toolchain to serve static images
Diffstat (limited to 'docker/app/scripts/migrate.sh')
-rwxr-xr-xdocker/app/scripts/migrate.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/app/scripts/migrate.sh b/docker/app/scripts/migrate.sh
index c4f59b12..22636c93 100755
--- a/docker/app/scripts/migrate.sh
+++ b/docker/app/scripts/migrate.sh
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
echo --- Applying migrations ---
-python manage.py migrate --verbosity 2
+python manage.py migrate --verbosity 1
echo --- Collecting static files ---
-python manage.py collectstatic --no-input --clear --verbosity 2
+python manage.py collectstatic --no-input --clear --verbosity 1
echo --- Starting uwsgi ---
exec "$@" # This runs the CMD at the end of the Dockerfile