mirror of
https://github.com/kennethreitz/photos.kennethreitz.org.git
synced 2026-06-21 15:10:56 +00:00
3cbd26e4f5
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>
17 lines
393 B
Python
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()
|