🔧 Settings: [#7] settings.py 설정 및 패키지 설치

This commit is contained in:
sm4640
2025-03-26 19:16:23 +09:00
parent fa3b6ac7b4
commit 163b1ccdd3
6 changed files with 300 additions and 0 deletions

16
config/asgi.py Normal file
View File

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