This commit is contained in:
Iliyan Angelov
2025-11-26 22:32:20 +02:00
commit ed94dd22dd
150 changed files with 14058 additions and 0 deletions

15
reports/apps.py Normal file
View File

@@ -0,0 +1,15 @@
"""
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