diff options
author | 2019-07-03 16:37:19 +0200 | |
---|---|---|
committer | 2019-07-03 16:37:19 +0200 | |
commit | 1616d7a467e9df3996a8080b00809648a5df14a3 (patch) | |
tree | 9da2d51f6ba0e78a5ceb85291d6bcf5e8ef350c6 /docker/app/scripts/migrate.sh | |
parent | Let'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-x | docker/app/scripts/migrate.sh | 4 |
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 |