0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-03-15 04:34:49 +00:00
healthchecks_healthchecks/hc/wsgi.py

19 lines
417 B
Python
Raw Permalink Normal View History

2015-06-11 19:12:09 +00:00
"""
WSGI config for hc project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
2023-04-07 09:50:09 +00:00
https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/
2015-06-11 19:12:09 +00:00
"""
from __future__ import annotations
2015-06-11 19:12:09 +00:00
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hc.settings")
application = get_wsgi_application()