add preliminary support for ASGI/daphne serving

This commit is contained in:
Nick Sweeting 2024-09-05 21:43:42 -07:00
parent 26291f81ef
commit 2c48dabfab
No known key found for this signature in database
2 changed files with 29 additions and 0 deletions
archivebox/core

View file

@ -65,6 +65,7 @@ PLUGIN_KEYS = AttrDict({
################################################################################
WSGI_APPLICATION = 'core.wsgi.application'
ASGI_APPLICATION = "core.asgi.application"
ROOT_URLCONF = 'core.urls'
LOGIN_URL = '/accounts/login/'