Files
kennethreitz 3cbd26e4f5 Initial project scaffold: Django 6 + uv, six app structure
ExifTree project with core, tree, gallery, groups, ingest, and search apps.
Managed by uv with Django as the sole dependency.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 19:06:00 -04:00

17 lines
393 B
Python

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