mirror of
https://github.com/EDeev/api_processor.git
synced 2026-06-15 19:11:01 +03:00
14 lines
332 B
Python
14 lines
332 B
Python
# api_project/api_project/wsgi.py
|
|
"""
|
|
WSGI config for api_project project.
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
"""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'api_project.settings')
|
|
|
|
application = get_wsgi_application()
|