mirror of
https://github.com/zulip/zulip.git
synced 2026-06-21 21:32:29 +08:00
This is a performance optimization: Rather than copying these files into the `prod-static` directory and then deleting them, we just don't copy them over in the first place. For styles, it might have once been the case that this did something, but we've moved them all to being managed by webpack some time ago. For the js directory, I think it was never useful to copy and then delete them; these files were always compiled via tools/minify-js, and the raw JS files weren't needed, anyway.
116 lines
3.9 KiB
Python
Executable File
116 lines
3.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Updates static files for production.
|
|
|
|
|
|
import os
|
|
import argparse
|
|
import sys
|
|
|
|
# We need settings so we can figure out where the prod-static directory is.
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
|
|
import scripts.lib.setup_path_on_import
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'zproject.settings'
|
|
from django.conf import settings
|
|
from scripts.lib.node_cache import setup_node_modules
|
|
from scripts.lib.zulip_tools import run
|
|
|
|
# check for the venv
|
|
from lib import sanity_check
|
|
sanity_check.check_venv(__file__)
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--prev-deploy', metavar='DIR',
|
|
help='a previous deploy from which to reuse files if possible')
|
|
parser.add_argument('--authors-not-required', action='store_true', default=False,
|
|
help='Authors files need not be updated')
|
|
args = parser.parse_args()
|
|
prev_deploy = args.prev_deploy
|
|
|
|
os.chdir(settings.DEPLOY_ROOT)
|
|
|
|
# Redirect child processes' output to a log file (most recent run only).
|
|
run(["mkdir", "-p", "var/log"])
|
|
fp = open('var/log/update-prod-static.log', 'w')
|
|
|
|
# Install node packages
|
|
setup_node_modules(production=True, stdout=fp, stderr=fp)
|
|
|
|
# Build emoji
|
|
run(['./tools/setup/emoji/build_emoji'], stdout=fp, stderr=fp)
|
|
|
|
# Inline CSS in emails
|
|
run(['./tools/inline-email-css'], stdout=fp, stderr=fp)
|
|
|
|
# Copy over static files from the zulip_bots package
|
|
run(['./tools/setup/generate_zulip_bots_static_files'], stdout=fp, stderr=fp)
|
|
|
|
# Generate custom icon webfont
|
|
run(['./tools/generate-custom-icon-webfont'], stdout=fp, stderr=fp)
|
|
|
|
# Build pygment data
|
|
run(['./tools/setup/build_pygments_data'], stdout=fp, stderr=fp)
|
|
|
|
# Compile Handlebars templates and minify JavaScript.
|
|
run(['./tools/minify-js'] + (['--prev-deploy', prev_deploy] if prev_deploy else []),
|
|
stdout=fp, stderr=fp)
|
|
|
|
# Copy the KaTeX files outside node_modules
|
|
run(['mkdir', '-p', os.path.join(settings.STATIC_ROOT, 'node_modules/katex/dist/')],
|
|
stdout=fp, stderr=fp)
|
|
|
|
run(['cp', 'node_modules/katex/dist/katex.css',
|
|
os.path.join(settings.STATIC_ROOT, 'node_modules/katex/dist/')],
|
|
stdout=fp, stderr=fp)
|
|
|
|
run(['cp', '-R', 'node_modules/katex/dist/fonts',
|
|
os.path.join(settings.STATIC_ROOT, 'node_modules/katex/dist/fonts')],
|
|
stdout=fp, stderr=fp)
|
|
|
|
CSS_FILES = [
|
|
'node_modules/perfect-scrollbar/css/perfect-scrollbar.css',
|
|
'node_modules/flatpickr/dist/flatpickr.css',
|
|
'node_modules/flatpickr/dist/plugins/confirmDate/confirmDate.css',
|
|
]
|
|
|
|
# Copy CSS files in node_modules to prod-static/serve
|
|
for css_file in CSS_FILES:
|
|
run(['cp', '--parents', css_file, settings.STATIC_ROOT])
|
|
|
|
# Collect the files that we're going to serve; this creates prod-static/serve.
|
|
run(['./manage.py', 'collectstatic', '--no-default-ignore',
|
|
'--noinput', '-i', 'assets', '-i' 'node_modules', '-i', 'styles', '-i', 'templates'],
|
|
stdout=fp, stderr=fp)
|
|
|
|
if not settings.PRODUCTION:
|
|
# When building a release tarball, we need to move staticfiles.json
|
|
run(['mv', 'prod-static/serve/staticfiles.json', 'staticfiles.json'],
|
|
stdout=fp, stderr=fp)
|
|
|
|
# Compile translation strings to generate `.mo` files.
|
|
run(['./manage.py', 'compilemessages'], stdout=fp, stderr=fp)
|
|
|
|
# Move the source maps out of the serve/ directory and into their
|
|
# proper place.
|
|
run(['rm', '-rf', 'prod-static/source-map'], stdout=fp, stderr=fp)
|
|
|
|
# Needed if PRODUCTION
|
|
run(['mkdir', '-p', 'prod-static'], stdout=fp, stderr=fp)
|
|
|
|
run(['mv', os.path.join(settings.STATIC_ROOT, 'source-map'), 'prod-static/source-map'],
|
|
stdout=fp, stderr=fp)
|
|
|
|
# Move language_options.json to the production release
|
|
run(['cp', '-aT', 'static/locale', os.path.join(settings.STATIC_ROOT, 'locale')],
|
|
stdout=fp, stderr=fp)
|
|
|
|
# Generate /team page markdown for authors
|
|
authors_cmd = ['./tools/update-authors-json']
|
|
if os.environ.get("TRAVIS"):
|
|
authors_cmd.append("--use-fixture")
|
|
if args.authors_not_required:
|
|
authors_cmd.append("--not-required")
|
|
run(authors_cmd, stdout=fp, stderr=fp)
|
|
|
|
fp.close()
|