mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Apparently `manage.py collectstatic` by default strips files starting with "." from what it collects. This is a reasonably precaution, though mostly irrelevant to us, since Zulip primarily runs that as part of build-release tarball, which runs in a clean directory. It also breaks our current approach for transferring node_modules to prod machines via release tarballs; this change fixes that bug.
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
# Updates static files for production.
 | 
						|
 | 
						|
from __future__ import absolute_import
 | 
						|
 | 
						|
import os
 | 
						|
import subprocess
 | 
						|
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
 | 
						|
 | 
						|
parser = argparse.ArgumentParser()
 | 
						|
parser.add_argument('--prev-deploy', metavar='DIR',
 | 
						|
                    help='a previous deploy from which to reuse files if possible')
 | 
						|
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).
 | 
						|
subprocess.check_call(["mkdir", "-p", "var/log"])
 | 
						|
fp = open('var/log/update-prod-static.log', 'w')
 | 
						|
 | 
						|
# Install node packages
 | 
						|
setup_node_modules(npm_args=['--production'], stdout=fp, stderr=fp)
 | 
						|
 | 
						|
# Compile Handlebars templates and minify JavaScript.
 | 
						|
subprocess.check_call(['./tools/minify-js']
 | 
						|
                      + (['--prev-deploy', prev_deploy] if prev_deploy else []),
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
 | 
						|
# Build emoji
 | 
						|
subprocess.check_call(['./tools/setup/emoji/build_emoji'],
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
 | 
						|
# Collect the files that we're going to serve; this creates prod-static/serve.
 | 
						|
subprocess.check_call(['./manage.py', 'collectstatic', '--no-default-ignore',
 | 
						|
                       '--noinput', '-i', 'assets'],
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
 | 
						|
# Compile translation strings to generate `.mo` files.
 | 
						|
subprocess.check_call(['./manage.py', 'compilemessages'],
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
 | 
						|
# Move the source maps out of the serve/ directory and into their
 | 
						|
# proper place.
 | 
						|
subprocess.check_call(['rm', '-rf', 'prod-static/source-map'],
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
subprocess.check_call(['mkdir', '-p', 'prod-static'],  # Needed if PRODUCTION
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
subprocess.check_call(['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
 | 
						|
subprocess.check_call(['cp', '-a', 'static/locale',
 | 
						|
                       os.path.join(settings.STATIC_ROOT, 'locale')],
 | 
						|
                      stdout=fp, stderr=fp)
 | 
						|
 | 
						|
fp.close()
 |