🎉 Improved backend structure & logs organization 🎉
This commit is contained in:
BIN
backend/utils/__pycache__/__init__.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/__init__.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/advanced_tables.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/advanced_tables.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/analytics.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/analytics.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/backup_manager.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/backup_manager.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/database_cleanup.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/database_cleanup.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/database_utils.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/database_utils.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/drag_drop_system.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/drag_drop_system.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/email_notification.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/email_notification.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/file_manager.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/file_manager.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/form_validation.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/form_validation.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/job_scheduler.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/job_scheduler.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/maintenance_system.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/maintenance_system.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/multi_location_system.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/multi_location_system.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/permissions.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/permissions.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/printer_monitor.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/printer_monitor.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/queue_manager.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/queue_manager.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/rate_limiter.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/rate_limiter.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/realtime_dashboard.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/realtime_dashboard.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/report_generator.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/report_generator.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/security.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/security.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/shutdown_manager.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/shutdown_manager.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/ssl_config.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/ssl_config.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/template_helpers.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/template_helpers.cpython-313.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/windows_fixes.cpython-313.pyc
Normal file
BIN
backend/utils/__pycache__/windows_fixes.cpython-313.pyc
Normal file
Binary file not shown.
11
backend/utils/ssl_config.py
Normal file
11
backend/utils/ssl_config.py
Normal file
@ -0,0 +1,11 @@
|
||||
"""
|
||||
SSL-Konfiguration für HTTPS-Server
|
||||
Importiert SSL-Funktionalität aus der Hauptkonfiguration
|
||||
"""
|
||||
|
||||
try:
|
||||
from config.settings_copy import get_ssl_context
|
||||
except ImportError:
|
||||
def get_ssl_context():
|
||||
"""Fallback wenn settings_copy nicht verfügbar"""
|
||||
return None
|
Reference in New Issue
Block a user