update-prod-static: Call django.setup during initialization.

This commit is contained in:
Tim Abbott 2021-07-18 21:05:07 -07:00
parent 4e876191c3
commit b6c678cbc4
1 changed files with 6 additions and 4 deletions

View File

@ -11,18 +11,20 @@ from scripts.lib.setup_path import setup_path
setup_path()
# check for the venv
from scripts.lib.zulip_tools import assert_not_running_as_root, run
from tools.lib import sanity_check
sanity_check.check_venv(__file__)
assert_not_running_as_root()
import django
os.environ["DJANGO_SETTINGS_MODULE"] = "zproject.settings"
django.setup()
from django.conf import settings
from scripts.lib.node_cache import setup_node_modules
from scripts.lib.zulip_tools import assert_not_running_as_root, run
assert_not_running_as_root()
os.chdir(settings.DEPLOY_ROOT)