1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/rpg_notes/asgi.py

17 lines
395 B
Python
Raw Permalink Normal View History

2021-08-22 20:10:29 +02:00
"""
ASGI config for rpg_notes 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/3.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rpg_notes.settings')
application = get_asgi_application()