from django.apps import AppConfig class HistoryConfig(AppConfig): default_auto_field = 'django.db.models.BigAutoField' name = 'history' verbose_name = 'History Tracking' def ready(self): """Initialize app and signal handlers""" from django.dispatch import Signal # Create a signal for history updates self.history_updated = Signal()