mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	Except in: - docs/writing-bots-guide.md, because bots are supposed to be Python 2 compatible - puppet/zulip_ops/files/zulip-ec2-configure-interfaces, because this script is still on python2.7 - tools/lint - tools/linter_lib - tools/lister.py For the latter two, because they might be yanked away to a separate repo for general use with other FLOSS projects.
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| import os
 | |
| import sys
 | |
| 
 | |
| BASE_DIR = os.path.dirname(os.path.abspath(__file__))
 | |
| sys.path.append(BASE_DIR)
 | |
| import scripts.lib.setup_path_on_import
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     os.environ.setdefault("DJANGO_SETTINGS_MODULE", "zproject.settings")
 | |
|     from django.conf import settings
 | |
|     from django.core.management import execute_from_command_line
 | |
|     from django.core.management.base import CommandError
 | |
|     from scripts.lib.zulip_tools import log_management_command
 | |
| 
 | |
|     if 'posix' in os.name and os.geteuid() == 0:
 | |
|         raise CommandError("manage.py should not be run as root.  Use `su zulip` to drop root.")
 | |
| 
 | |
|     log_management_command(" ".join(sys.argv), settings.MANAGEMENT_LOG_PATH)
 | |
| 
 | |
|     os.environ.setdefault("PYTHONSTARTUP", os.path.join(BASE_DIR, "scripts/lib/pythonrc.py"))
 | |
|     if "--no-traceback" not in sys.argv and len(sys.argv) > 1:
 | |
|         sys.argv.append("--traceback")
 | |
|     try:
 | |
|         execute_from_command_line(sys.argv)
 | |
|     except CommandError as e:
 | |
|         print(e, file=sys.stderr)
 | |
|         sys.exit(1)
 |