12 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.apps import AppConfig
 | |
| 
 | |
| 
 | |
| class DeploymentConfig(AppConfig):
 | |
|     default_auto_field = "django.db.models.BigAutoField"
 | |
|     name = "deployment"
 | |
| 
 | |
|     def ready(self) -> None:
 | |
|         import deployment.signals  # noqa
 | |
| 
 | |
|         return super().ready()
 |