import os
from django.core.handlers.wsgi import WSGIHandler

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "$project_name.settings")
sys.path.append(os.path.abspath(os.path.dirname(__file__)))

# This application object is used by the development server
# as well as any WSGI server configured to use this file.
application = WSGIHandler()
