1
0
Fork 0
This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
csb-project-1/project/wsgi.py

17 lines
391 B
Python
Raw Normal View History

2024-11-24 14:42:12 +02:00
"""
2024-11-24 16:45:26 +02:00
WSGI config for project project.
2024-11-24 14:42:12 +02:00
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2024-11-24 16:45:26 +02:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings')
2024-11-24 14:42:12 +02:00
application = get_wsgi_application()