mirror of
https://github.com/suitenumerique/django-lasuite
synced 2026-04-25 17:15:14 +02:00
Add initial project structure with tests and configuration files: - ruff for format and linting - uv with hatch for packaging
17 lines
397 B
Python
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()
|