From 1bf96683154e133fbdf05604bd93d8d9cdd18ed9 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Tue, 11 Feb 2020 21:28:57 +0100 Subject: [PATCH] Ignore venv and tox when compiling translations --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index aa2d908..2b7471d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,7 @@ # This will launch the Django project as a fastcgi socket # then Apache or NGINX will be able to use that socket -python manage.py compilemessages +python manage.py compilemessages -i ".tox" -i "venv" python manage.py makemigrations # Wait for database