mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	So you can write "./manage.py" instead of "python manage.py". (imported from commit 9d00e17195d6c849611f2a0fa6f8927d3410cc2a)
		
			
				
	
	
		
			11 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "humbug.settings")
 | 
						|
 | 
						|
    from django.core.management import execute_from_command_line
 | 
						|
 | 
						|
    execute_from_command_line(sys.argv)
 |