This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/facturio/asgi.py
2025-03-03 21:56:04 +01:00

10 lines
192 B
Python

import os
from django.core.asgi import get_asgi_application
os.environ.setdefault(
'DJANGO_SETTINGS_MODULE',
'facturio.settings.development',
)
application = get_asgi_application()