diff options
author | 2019-07-03 15:58:18 +0200 | |
---|---|---|
committer | 2019-07-03 15:58:18 +0200 | |
commit | 328f9b9ab42b456001a2b8dab15ca6ebe3ba7923 (patch) | |
tree | 6ad488fa879acd77bc6e807459d60c9b652a8a72 /docker | |
parent | Fixing the entrypoint location - forgot that we created an app root dir. (diff) |
Let's increase the verbosity and see what you guys have to say, migrate and collectstatic
Diffstat (limited to 'docker')
-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 94b5f7c4..c4f59b12 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 1 +python manage.py migrate --verbosity 2 echo --- Collecting static files --- -python manage.py collectstatic --no-input --clear --verbosity 0 +python manage.py collectstatic --no-input --clear --verbosity 2 echo --- Starting uwsgi --- exec "$@" # This runs the CMD at the end of the Dockerfile |