mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-08 05:29:52 +00:00
13 lines
280 B
Python
13 lines
280 B
Python
import django
|
|
import os
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tabby.settings')
|
|
django.setup()
|
|
|
|
from channels.routing import ProtocolTypeRouter
|
|
from django.core.asgi import get_asgi_application
|
|
|
|
application = ProtocolTypeRouter({
|
|
'http': get_asgi_application(),
|
|
})
|