This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
calebasse/calebasse.wsgi

10 lines
311 B
Python

import os
import calebasse.settings
os.environ.setdefault("DJANGO_SETTINGS_MODULE", calebasse.settings)
# This application object is used by the development server
# as well as any WSGI server configured to use this file.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()