tiffank1802
Add Django simulation server with Docker config
b42075e
raw
history blame contribute delete
226 Bytes
"""
ASGI config for simulationserver project.
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'simulationserver.settings')
application = get_asgi_application()