inital commit

This commit is contained in:
2026-04-10 20:51:43 -05:00
parent cd1f2eae29
commit 562a8525d0
85 changed files with 4820 additions and 2 deletions

11
WaterTrek/asgi.py Normal file
View File

@@ -0,0 +1,11 @@
"""
ASGI config for WaterTrek project.
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "WaterTrek.settings")
application = get_asgi_application()