16 lines
423 B
Python
16 lines
423 B
Python
"""
|
|
App configuration for reports app.
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ReportsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'reports'
|
|
|
|
def ready(self):
|
|
"""Set up signals and configure email settings."""
|
|
# Note: Email settings are loaded dynamically via the email backend
|
|
# No need to access database here to avoid warnings
|
|
pass
|