An error occurred while loading the file. Please try again.
  • Gezer's avatar
    Refactor backend and stream processing structure · da0dc0bb
    Gezer authored
    - Updated Dockerfile in backend to set PYTHONPATH and modify CMD for Django server.
    - Changed permissions for multiple Python files in backend to make them executable.
    - Adjusted import paths in influxdb_service.py and views.py to reflect new structure.
    - Removed unused utils and loggingFactory files from stream_processing.
    - Added new utils for logging and flux query building.
    - Enhanced error handling and logging in mQTTClientHandler.py.
    - Updated docker-compose.yaml to include utils directory for both backend and stream processing services.
    - Improved JSON handling in jsonhandler.py with better exception management.
    da0dc0bb
asgi.py 385 bytes
"""
ASGI config for core project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
application = get_asgi_application()