Cleaned up proj directory by removing extra proj dir, updated defenses, effects, and main page with new formatting for better appearance

This commit is contained in:
Michael Roy
2024-05-19 02:33:30 -04:00
parent b422b98123
commit 844ed6736c
34 changed files with 135 additions and 115 deletions

View File

@@ -0,0 +1,16 @@
"""
ASGI config for deep_impact_proj 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.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'deep_impact_proj.settings')
application = get_asgi_application()