Unset -o xtrace in compose start scripts

This commit is contained in:
Nikita P. Shupeyko 2018-06-05 12:28:11 +03:00
parent 27cf4f01da
commit d8526d1b2d
3 changed files with 0 additions and 3 deletions

View File

@ -2,7 +2,6 @@
set -o errexit
set -o nounset
set -o xtrace
rm -f './celerybeat.pid'

View File

@ -2,7 +2,6 @@
set -o errexit
set -o nounset
set -o xtrace
celery -A {{cookiecutter.project_slug}}.taskapp worker -l INFO

View File

@ -3,7 +3,6 @@
set -o errexit
set -o pipefail
set -o nounset
set -o xtrace
python manage.py migrate