ArchiveBox/archivebox/core/wsgi.py
2026-07-29 15:08:58 -07:00

17 lines
419 B
Python

"""
WSGI config for archivebox project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
"""
import archivebox # noqa
from archivebox.config.django import setup_django
from django.core.wsgi import get_wsgi_application
setup_django(check_db=True)
application = get_wsgi_application()