"""
WSGI config for map_library 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/5.0/howto/deployment/wsgi/
"""

import os
import sys
cur_dir = os.path.dirname(__file__)
sys.path.append(os.path.join(cur_dir, '..'))
sys.path.append(cur_dir)

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "map_library.settings")

application = get_wsgi_application()
