Files
django-lasuite/tests/test_project/wsgi.py
Quentin BEY f049940ddb 🎉(build) bootstrap library folders
Add initial project structure with tests and configuration files:
 - ruff for format and linting
 - uv with hatch for packaging
2025-03-29 08:55:01 +01:00

17 lines
397 B
Python

"""
WSGI config for the test 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/3.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_project.settings")
application = get_wsgi_application()