mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	Note that django_stubs_ext is required to be placed within common.in because we need the monkeypatched types in runtime; django-stubs itself is for type checking only. In the future, we would like to pin to a release instead of a git revision, but several patches we've contributed upstream have not appeared in a release yet. We also remove the type annotation for RealmAuditLog.event_last_message_id here instead of earlier because type checking fails otherwise. Fixes #11560.
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Django settings for zulip project.
 | 
						|
########################################################################
 | 
						|
# Here's how settings for the Zulip project work:
 | 
						|
#
 | 
						|
# * configured_settings.py imports default_settings.py, which contains
 | 
						|
#   default values for settings configurable in prod_settings.py.
 | 
						|
#
 | 
						|
# * configured_settings.py imports prod_settings.py, and any site-specific
 | 
						|
#   configuration belongs there.  The template for prod_settings.py is
 | 
						|
#   prod_settings_template.py.
 | 
						|
#
 | 
						|
# * computed_settings.py contains non-site-specific and settings
 | 
						|
#   configuration for the Zulip Django app.
 | 
						|
#
 | 
						|
# See https://zulip.readthedocs.io/en/latest/subsystems/settings.html for more information
 | 
						|
#
 | 
						|
########################################################################
 | 
						|
import django_stubs_ext
 | 
						|
 | 
						|
# Monkey-patch certain types that are declared as generic types
 | 
						|
# generic in django-stubs, but not (yet) as generic types in Django
 | 
						|
# itself. This is necessary to ensure type references like
 | 
						|
# django.db.models.Lookup[int] work correctly at runtime.
 | 
						|
django_stubs_ext.monkeypatch()
 | 
						|
 | 
						|
from .configured_settings import *  # noqa: F401,F403 isort: skip
 | 
						|
from .computed_settings import *  # noqa: F401,F403 isort: skip
 | 
						|
 | 
						|
# Do not add any code after these wildcard imports!  Add it to
 | 
						|
# computed_settings instead.
 |