mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			519 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			519 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.utils.version import get_version
 | |
| 
 | |
| VERSION = (1, 8, 1, 'final', 0)
 | |
| 
 | |
| __version__ = get_version(VERSION)
 | |
| 
 | |
| 
 | |
| def setup():
 | |
|     """
 | |
|     Configure the settings (this happens as a side effect of accessing the
 | |
|     first setting), configure logging and populate the app registry.
 | |
|     """
 | |
|     from django.apps import apps
 | |
|     from django.conf import settings
 | |
|     from django.utils.log import configure_logging
 | |
| 
 | |
|     configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
 | |
|     apps.populate(settings.INSTALLED_APPS)
 |