Move back to Python 🙃
This commit is contained in:
parent
f9d4ea8d4f
commit
d7be14f5a2
60 changed files with 757 additions and 5605 deletions
15
feedvault/asgi.py
Normal file
15
feedvault/asgi.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"""ASGI config for feedvault 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", "feedvault.settings")
|
||||
|
||||
application = get_asgi_application()
|
||||
Loading…
Add table
Add a link
Reference in a new issue